C:
char c = '\u1A98';
printf("%c\n", c); // Output: ᪘
JavaScript:
const char = '\u1A98';
console.log(char); // Output: ᪘
Java:
char c = '\u1A98';
System.out.println(c); // Output: ᪘
JSON:
{"text": "\u1A98"} // Value: ᪘
Python:
char = '\u1A98'
print(char) # Output: ᪘
Perl:
my $char = "\x{1A98}";
print $char; # Output: ᪘
PHP:
$char = "\x{1A98}";
echo $char; // Output: ᪘
Ruby:
char = "\u{1A98}"
puts char # Output: ᪘
Rust:
let c = '\u{1A98}';
println!("{}", c); // Output: ᪘
Go:
char := '\u1A98'
fmt.Printf("%c\n", char) // Output: ᪘
CSS:
/* CSS content property */
.element::before {
content: "\001A98"; /* 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%AA%98
MD5:
95f12fd930c1dadbfad08977dda7403e
SHA1:
fb68e9363fc4054450420fa3568625ba6aac8f11
Base64:
4aqY