C:
char c = '\u2A98';
printf("%c\n", c); // Output: ⪘
JavaScript:
const char = '\u2A98';
console.log(char); // Output: ⪘
Java:
char c = '\u2A98';
System.out.println(c); // Output: ⪘
JSON:
{"text": "\u2A98"} // Value: ⪘
Python:
char = '\u2A98'
print(char) # Output: ⪘
Perl:
my $char = "\x{2A98}";
print $char; # Output: ⪘
PHP:
$char = "\x{2A98}";
echo $char; // Output: ⪘
Ruby:
char = "\u{2A98}"
puts char # Output: ⪘
Rust:
let c = '\u{2A98}';
println!("{}", c); // Output: ⪘
Go:
char := '\u2A98'
fmt.Printf("%c\n", char) // Output: ⪘
CSS:
/* CSS content property */
.element::before {
content: "\002A98"; /* 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=%E2%AA%98
MD5:
d6b074e63185d3dd6950082c247d89a1
SHA1:
1398a4014984d50261e4a082a960414aa71cf031
Base64:
4qqY