C:
char c = '\u5501';
printf("%c\n", c); // Output: 唁
JavaScript:
const char = '\u5501';
console.log(char); // Output: 唁
Java:
char c = '\u5501';
System.out.println(c); // Output: 唁
JSON:
{"text": "\u5501"} // Value: 唁
Python:
char = '\u5501'
print(char) # Output: 唁
Perl:
my $char = "\x{5501}";
print $char; # Output: 唁
PHP:
$char = "\x{5501}";
echo $char; // Output: 唁
Ruby:
char = "\u{5501}"
puts char # Output: 唁
Rust:
let c = '\u{5501}';
println!("{}", c); // Output: 唁
Go:
char := '\u5501'
fmt.Printf("%c\n", char) // Output: 唁
CSS:
/* CSS content property */
.element::before {
content: "\005501"; /* 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%81
MD5:
55e1eb3e9add0e524fc231e281b16c92
SHA1:
7e5d7ac3afcae206226fd4c044b22c16573d0d1e
Base64:
5ZSB