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