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