C:
char c = '\u8AA2';
printf("%c\n", c); // Output: 誢
JavaScript:
const char = '\u8AA2';
console.log(char); // Output: 誢
Java:
char c = '\u8AA2';
System.out.println(c); // Output: 誢
JSON:
{"text": "\u8AA2"} // Value: 誢
Python:
char = '\u8AA2'
print(char) # Output: 誢
Perl:
my $char = "\x{8AA2}";
print $char; # Output: 誢
PHP:
$char = "\x{8AA2}";
echo $char; // Output: 誢
Ruby:
char = "\u{8AA2}"
puts char # Output: 誢
Rust:
let c = '\u{8AA2}';
println!("{}", c); // Output: 誢
Go:
char := '\u8AA2'
fmt.Printf("%c\n", char) // Output: 誢
CSS:
/* CSS content property */
.element::before {
content: "\008AA2"; /* 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=%E8%AA%A2
MD5:
f4f45e25ccfd9920e6e1900d3990063b
SHA1:
c3c8485fd1faae58cbe059f00ec08cc87cb6915c
Base64:
6Kqi