C:
char c = '\u5555';
printf("%c\n", c); // Output: 啕
JavaScript:
const char = '\u5555';
console.log(char); // Output: 啕
Java:
char c = '\u5555';
System.out.println(c); // Output: 啕
JSON:
{"text": "\u5555"} // Value: 啕
Python:
char = '\u5555'
print(char) # Output: 啕
Perl:
my $char = "\x{5555}";
print $char; # Output: 啕
PHP:
$char = "\x{5555}";
echo $char; // Output: 啕
Ruby:
char = "\u{5555}"
puts char # Output: 啕
Rust:
let c = '\u{5555}';
println!("{}", c); // Output: 啕
Go:
char := '\u5555'
fmt.Printf("%c\n", char) // Output: 啕
CSS:
/* CSS content property */
.element::before {
content: "\005555"; /* 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%95%95
MD5:
cd2821e0dfb21204296229d06444a964
SHA1:
bfe0e80032d5218d246192a2165ceeb279129ef0
Base64:
5ZWV