C:
char c = '\u8A4B';
printf("%c\n", c); // Output: 詋
JavaScript:
const char = '\u8A4B';
console.log(char); // Output: 詋
Java:
char c = '\u8A4B';
System.out.println(c); // Output: 詋
JSON:
{"text": "\u8A4B"} // Value: 詋
Python:
char = '\u8A4B'
print(char) # Output: 詋
Perl:
my $char = "\x{8A4B}";
print $char; # Output: 詋
PHP:
$char = "\x{8A4B}";
echo $char; // Output: 詋
Ruby:
char = "\u{8A4B}"
puts char # Output: 詋
Rust:
let c = '\u{8A4B}';
println!("{}", c); // Output: 詋
Go:
char := '\u8A4B'
fmt.Printf("%c\n", char) // Output: 詋
CSS:
/* CSS content property */
.element::before {
content: "\008A4B"; /* 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%A9%8B
MD5:
fb1de737639dbc4f6c53805fadcabad8
SHA1:
454bd7f64f26ffe8577d5053d536821fc812e3ac
Base64:
6KmL