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