C:
char c = '\u1C59';
printf("%c\n", c); // Output: ᱙
JavaScript:
const char = '\u1C59';
console.log(char); // Output: ᱙
Java:
char c = '\u1C59';
System.out.println(c); // Output: ᱙
JSON:
{"text": "\u1C59"} // Value: ᱙
Python:
char = '\u1C59'
print(char) # Output: ᱙
Perl:
my $char = "\x{1C59}";
print $char; # Output: ᱙
PHP:
$char = "\x{1C59}";
echo $char; // Output: ᱙
Ruby:
char = "\u{1C59}"
puts char # Output: ᱙
Rust:
let c = '\u{1C59}';
println!("{}", c); // Output: ᱙
Go:
char := '\u1C59'
fmt.Printf("%c\n", char) // Output: ᱙
CSS:
/* CSS content property */
.element::before {
content: "\001C59"; /* 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%B1%99
MD5:
66f7416d07bc1df5309df28e361763ca
SHA1:
0896e4d1c8dac500940e4e60426104be41561424
Base64:
4bGZ