C:
char c = '\u1489';
printf("%c\n", c); // Output: ᒉ
JavaScript:
const char = '\u1489';
console.log(char); // Output: ᒉ
Java:
char c = '\u1489';
System.out.println(c); // Output: ᒉ
JSON:
{"text": "\u1489"} // Value: ᒉ
Python:
char = '\u1489'
print(char) # Output: ᒉ
Perl:
my $char = "\x{1489}";
print $char; # Output: ᒉ
PHP:
$char = "\x{1489}";
echo $char; // Output: ᒉ
Ruby:
char = "\u{1489}"
puts char # Output: ᒉ
Rust:
let c = '\u{1489}';
println!("{}", c); // Output: ᒉ
Go:
char := '\u1489'
fmt.Printf("%c\n", char) // Output: ᒉ
CSS:
/* CSS content property */
.element::before {
content: "\001489"; /* 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%92%89
MD5:
133d05d1a5b229c8519febdea8766168
SHA1:
292ca1761ad3ecfb8d0cb87cc7e592cad7e65473
Base64:
4ZKJ