C:
char c = '\u1909';
printf("%c\n", c); // Output: ᤉ
JavaScript:
const char = '\u1909';
console.log(char); // Output: ᤉ
Java:
char c = '\u1909';
System.out.println(c); // Output: ᤉ
JSON:
{"text": "\u1909"} // Value: ᤉ
Python:
char = '\u1909'
print(char) # Output: ᤉ
Perl:
my $char = "\x{1909}";
print $char; # Output: ᤉ
PHP:
$char = "\x{1909}";
echo $char; // Output: ᤉ
Ruby:
char = "\u{1909}"
puts char # Output: ᤉ
Rust:
let c = '\u{1909}';
println!("{}", c); // Output: ᤉ
Go:
char := '\u1909'
fmt.Printf("%c\n", char) // Output: ᤉ
CSS:
/* CSS content property */
.element::before {
content: "\001909"; /* 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%A4%89
MD5:
1968ed8bfe40d087da55eb9db12403d0
SHA1:
d21ec844eafe30f71f53603f14569ee1c8b42ab7
Base64:
4aSJ