Clarity has two string types: `string-ascii` and `string-utf8`. For raw binary data, it uses `buff` (buffers).
clarity "Hello World" ;; ascii u"Hello 🌍" ;; utf8 0x010203 ;; buffer
Handling text and raw data.
Clarity has two string types: `string-ascii` and `string-utf8`. For raw binary data, it uses `buff` (buffers).
clarity "Hello World" ;; ascii u"Hello 🌍" ;; utf8 0x010203 ;; buffer
1. How do you represent a UTF-8 string?