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