encoding.md

July 15, 2021 · View on GitHub

Bookmarks tagged [encoding]

www.codever.land/bookmarks/t/encoding

Base64 Decode and Encode - Online

https://www.base64decode.org/

Simple base64 online encoder and decoder


Lunatech Blog: What every web developer must know about URL encoding

https://www.talisman.org/~erlkonig/misc/lunatech%5Ewhat-every-webdev-must-know-about-url-encoding/

This article describes common misconceptions about Uniform Resource Locator (URL) encoding, then attempts to clarify URL encoding for HTTP, before presenting frequent problems and their solutions. Whi...


alex/rust-asn1

https://github.com/alex/rust-asn1

A Rust ASN.1 (DER) serializer


arjantop/rust-bencode

https://github.com/arjantop/rust-bencode

Bencode implementation in Rust


arcnmx/nue

https://github.com/arcnmx/nue

I/O and binary data encoding for Rust


TyOverby/bincode

https://github.com/TyOverby/bincode

A binary encoder/decoder in Rust


zonyitoo/bson-rs

https://github.com/zonyitoo/bson-rs


BurntSushi/byteorder

https://github.com/BurntSushi/byteorder

Supports big-endian, little-endian and native byte orders


capnproto/capnproto-rust

https://github.com/capnproto/capnproto-rust


lifthrasiir/rust-encoding

https://github.com/lifthrasiir/rust-encoding


mrhooray/crc-rs

https://github.com/mrhooray/crc-rs


BurntSushi/rust-csv

https://github.com/BurntSushi/rust-csv

A fast and flexible CSV reader and writer, with support for Serde


FlatBuffers

https://google.github.io/flatbuffers/


frol/flatc-rust

https://github.com/frol/flatc-rust

FlatBuffers compiler (flatc) integration for Cargo build scripts


mandrean/har-rs

https://github.com/mandrean/har-rs

A HTTP Archive Format (HAR) serialization & deserialization library Build Status


servo/html5ever

https://github.com/servo/html5ever

High-performance browser-grade HTML5 parser


veddan/rust-htmlescape

https://github.com/veddan/rust-htmlescape

encoding/decoding HTML entities


pikkr/pikkr

https://github.com/pikkr/pikkr

JSON parser which picks up values directly without performing tokenization in Rust


serde-rs/json

https://github.com/serde-rs/json

JSON support for Serde framework


maciejhirsz/json-rust

https://github.com/maciejhirsz/json-rust

JSON implementation in Rust


Qihoo360/rust-jsonnet

https://github.com/Qihoo360/rust-jsonnet


3Hren/msgpack-rust

https://github.com/3Hren/msgpack-rust

A pure Rust low/high level MessagePack implementation


jcreekmore/pem-rs

https://github.com/jcreekmore/pem-rs

A Rust based way to parse and encode PEM-encoded data


mandrean/postman-collection-rs

https://github.com/mandrean/postman-collection-rs

A Postman Collection v1, v2 & v2.1 serialization & deserialization library [Build Status](https://travis-ci.org/mandrean/...


danburkert/prost

https://github.com/danburkert/prost


stepancheg/rust-protobuf

https://github.com/stepancheg/rust-protobuf


https://github.com/ron-rs/ron

https://github.com/ron-rs/ron


erickt/rust-tnetstring

https://github.com/erickt/rust-tnetstring


alexcrichton/toml-rs

https://github.com/alexcrichton/toml-rs


tafia/quick-xml

https://github.com/tafia/quick-xml

High performance XML pull reader/writer


Florob/RustyXML

https://github.com/Florob/RustyXML

an XML parser written in Rust


shepmaster/sxd-document

https://github.com/shepmaster/sxd-document

An XML library in Rust


shepmaster/sxd-xpath

https://github.com/shepmaster/sxd-xpath

An XPath library in Rust


netvl/xml-rs

https://github.com/netvl/xml-rs

A streaming XML library


media-io/yaserde

https://github.com/media-io/yaserde

Yet Another Serializer/Deserializer specialized for XML


chyh1990/yaml-rust

https://github.com/chyh1990/yaml-rust

The missing YAML 1.2 implementation for Rust.


kimhyunkang/libyaml-rust

https://github.com/kimhyunkang/libyaml-rust

libyaml bindings


vitiral/stfu8

https://github.com/vitiral/stfu8

Sorta Text Format in UTF-8


JavaScript’s internal character encoding: UCS-2 or UTF-16? · Mathias Bynens

https://mathiasbynens.be/notes/javascript-encoding

Does JavaScript use UCS-2 or UTF-16 encoding? Since I couldn’t find a definitive answer to this question anywhere, I decided to look into it. The answer depends on what you’re referring to: the JavaSc...


sql server - What is the difference between varchar and nvarchar? - Stack Overflow

http://stackoverflow.com/questions/144283/what-is-the-difference-between-varchar-and-nvarchar

An nvarchar column can store any Unicode data. A varchar column is restricted to an 8-bit codepage. Some people think that varchar should be used because it takes up less space. I believe this is ...