C:
char c = '\u4EAB';
printf("%c\n", c); // Output: 享
JavaScript:
const char = '\u4EAB';
console.log(char); // Output: 享
Java:
char c = '\u4EAB';
System.out.println(c); // Output: 享
JSON:
{"text": "\u4EAB"} // Value: 享
Python:
char = '\u4EAB'
print(char) # Output: 享
Perl:
my $char = "\x{4EAB}";
print $char; # Output: 享
PHP:
$char = "\x{4EAB}";
echo $char; // Output: 享
Ruby:
char = "\u{4EAB}"
puts char # Output: 享
Rust:
let c = '\u{4EAB}';
println!("{}", c); // Output: 享
Go:
char := '\u4EAB'
fmt.Printf("%c\n", char) // Output: 享
CSS:
/* CSS content property */
.element::before {
content: "\004EAB"; /* 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=%E4%BA%AB
MD5:
dc566557b7258cc9c210a867dcd6ffdf
SHA1:
b45adf09ab07f034a83d0d3602c5a2a2ab390f2b
Base64:
5Lqr