# ppx\_unicode this is an opinionated unicode PPX for ocaml features - all bare string literals are enforced UTF-8, and normalized using NFC. this is similar to , however this PPX aims for a modern implementation based on `ppxlib` and defaults to enforced and normalized UTF-8 on all strings - `Uchar.t` literals: ```ocaml # "å"[@uchar] - : Uchar.t = ``` - `bytes` literals ```ocaml # "å"[@bytes] - : bytes = Bytes.of_string "\195\165" ```