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