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