C:
char c = '\u1606';
printf("%c\n", c); // Output: ᘆ
JavaScript:
const char = '\u1606';
console.log(char); // Output: ᘆ
Java:
char c = '\u1606';
System.out.println(c); // Output: ᘆ
JSON:
{"text": "\u1606"} // Value: ᘆ
Python:
char = '\u1606'
print(char) # Output: ᘆ
Perl:
my $char = "\x{1606}";
print $char; # Output: ᘆ
PHP:
$char = "\x{1606}";
echo $char; // Output: ᘆ
Ruby:
char = "\u{1606}"
puts char # Output: ᘆ
Rust:
let c = '\u{1606}';
println!("{}", c); // Output: ᘆ
Go:
char := '\u1606'
fmt.Printf("%c\n", char) // Output: ᘆ
CSS:
/* CSS content property */
.element::before {
content: "\001606"; /* Display: ᘆ */
}
HTML Decimal:
<p>HTML decimal: ᘆ</p> <!-- Display: ᘆ -->
HTML Hexadecimal:
<p>HTML hex: ᘆ</p> <!-- Display: ᘆ -->
URL Encoding:
// ᘆ URL encoding
https://unicodefinder.com/search.php?query=%E1%98%86
MD5:
c3da127bc1406bded22efe9d66a18b13
SHA1:
dfd7da93d69c323aca3e8e4b24ebc2aad6f5a332
Base64:
4ZiG