# Unicode escapes of the form %u{hex-code} are transformed into the
# appropriate byte sequence for UTF-8 encoding
log "%u{1f600}";

# Or you can use the byte sequence literally, which in this case
# (F0 9F 91 95) will show up as a t-shirt emoji (U+1F455)
log "👕";

error 200;