C:
char c = '\u5633';
printf("%c\n", c); // Output: 嘳
JavaScript:
const char = '\u5633';
console.log(char); // Output: 嘳
Java:
char c = '\u5633';
System.out.println(c); // Output: 嘳
JSON:
{"text": "\u5633"} // Value: 嘳
Python:
char = '\u5633'
print(char) # Output: 嘳
Perl:
my $char = "\x{5633}";
print $char; # Output: 嘳
PHP:
$char = "\x{5633}";
echo $char; // Output: 嘳
Ruby:
char = "\u{5633}"
puts char # Output: 嘳
Rust:
let c = '\u{5633}';
println!("{}", c); // Output: 嘳
Go:
char := '\u5633'
fmt.Printf("%c\n", char) // Output: 嘳
CSS:
/* CSS content property */
.element::before {
content: "\005633"; /* 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%98%B3
MD5:
4bf7a270f5c651d1aca53ec79e92adea
SHA1:
c8d9ea0ca7f2ec0d6aeb7f24839352c557801614
Base64:
5Ziz