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