C:
char c = '\u53AF';
printf("%c\n", c); // Output: 厯
JavaScript:
const char = '\u53AF';
console.log(char); // Output: 厯
Java:
char c = '\u53AF';
System.out.println(c); // Output: 厯
JSON:
{"text": "\u53AF"} // Value: 厯
Python:
char = '\u53AF'
print(char) # Output: 厯
Perl:
my $char = "\x{53AF}";
print $char; # Output: 厯
PHP:
$char = "\x{53AF}";
echo $char; // Output: 厯
Ruby:
char = "\u{53AF}"
puts char # Output: 厯
Rust:
let c = '\u{53AF}';
println!("{}", c); // Output: 厯
Go:
char := '\u53AF'
fmt.Printf("%c\n", char) // Output: 厯
CSS:
/* CSS content property */
.element::before {
content: "\0053AF"; /* 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%8E%AF
MD5:
44fddafa9b22680f91a0b3cfb8083572
SHA1:
ea711dfdd60dec0bc5ebdce76150bcc4c08cf5d4
Base64:
5Y6v