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