C:
char c = '\u5503';
printf("%c\n", c); // Output: 唃
JavaScript:
const char = '\u5503';
console.log(char); // Output: 唃
Java:
char c = '\u5503';
System.out.println(c); // Output: 唃
JSON:
{"text": "\u5503"} // Value: 唃
Python:
char = '\u5503'
print(char) # Output: 唃
Perl:
my $char = "\x{5503}";
print $char; # Output: 唃
PHP:
$char = "\x{5503}";
echo $char; // Output: 唃
Ruby:
char = "\u{5503}"
puts char # Output: 唃
Rust:
let c = '\u{5503}';
println!("{}", c); // Output: 唃
Go:
char := '\u5503'
fmt.Printf("%c\n", char) // Output: 唃
CSS:
/* CSS content property */
.element::before {
content: "\005503"; /* 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%83
MD5:
985c6cd8cb9f5c03610852010c21fcdb
SHA1:
c525e502068abd838f31f604e3daff407e31403b
Base64:
5ZSD