C:
char c = '\u5446';
printf("%c\n", c); // Output: 呆
JavaScript:
const char = '\u5446';
console.log(char); // Output: 呆
Java:
char c = '\u5446';
System.out.println(c); // Output: 呆
JSON:
{"text": "\u5446"} // Value: 呆
Python:
char = '\u5446'
print(char) # Output: 呆
Perl:
my $char = "\x{5446}";
print $char; # Output: 呆
PHP:
$char = "\x{5446}";
echo $char; // Output: 呆
Ruby:
char = "\u{5446}"
puts char # Output: 呆
Rust:
let c = '\u{5446}';
println!("{}", c); // Output: 呆
Go:
char := '\u5446'
fmt.Printf("%c\n", char) // Output: 呆
CSS:
/* CSS content property */
.element::before {
content: "\005446"; /* 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%91%86
MD5:
4894c23dd5ef63f827c0c1339495e088
SHA1:
0c0a87158edaa4a2f2ec65f47c95bad98cf99991
Base64:
5ZGG