C:
char c = '\u8A8F';
printf("%c\n", c); // Output: 誏
JavaScript:
const char = '\u8A8F';
console.log(char); // Output: 誏
Java:
char c = '\u8A8F';
System.out.println(c); // Output: 誏
JSON:
{"text": "\u8A8F"} // Value: 誏
Python:
char = '\u8A8F'
print(char) # Output: 誏
Perl:
my $char = "\x{8A8F}";
print $char; # Output: 誏
PHP:
$char = "\x{8A8F}";
echo $char; // Output: 誏
Ruby:
char = "\u{8A8F}"
puts char # Output: 誏
Rust:
let c = '\u{8A8F}';
println!("{}", c); // Output: 誏
Go:
char := '\u8A8F'
fmt.Printf("%c\n", char) // Output: 誏
CSS:
/* CSS content property */
.element::before {
content: "\008A8F"; /* 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%8F
MD5:
03e3c61edefd919ef583f4594245c2ba
SHA1:
4b43f150f4b8d467c2d5c5bfde9a98f6c3b89b35
Base64:
6KqP