C:
char c = '\u5505';
printf("%c\n", c); // Output: 唅
JavaScript:
const char = '\u5505';
console.log(char); // Output: 唅
Java:
char c = '\u5505';
System.out.println(c); // Output: 唅
JSON:
{"text": "\u5505"} // Value: 唅
Python:
char = '\u5505'
print(char) # Output: 唅
Perl:
my $char = "\x{5505}";
print $char; # Output: 唅
PHP:
$char = "\x{5505}";
echo $char; // Output: 唅
Ruby:
char = "\u{5505}"
puts char # Output: 唅
Rust:
let c = '\u{5505}';
println!("{}", c); // Output: 唅
Go:
char := '\u5505'
fmt.Printf("%c\n", char) // Output: 唅
CSS:
/* CSS content property */
.element::before {
content: "\005505"; /* 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%85
MD5:
11807656d7dc93cc586c8b58a43b47c3
SHA1:
3378b8ed568b859d3dbe9375b6aa87b7d6fd3fc8
Base64:
5ZSF