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