C:
char c = '\u5520';
printf("%c\n", c); // Output: 唠
JavaScript:
const char = '\u5520';
console.log(char); // Output: 唠
Java:
char c = '\u5520';
System.out.println(c); // Output: 唠
JSON:
{"text": "\u5520"} // Value: 唠
Python:
char = '\u5520'
print(char) # Output: 唠
Perl:
my $char = "\x{5520}";
print $char; # Output: 唠
PHP:
$char = "\x{5520}";
echo $char; // Output: 唠
Ruby:
char = "\u{5520}"
puts char # Output: 唠
Rust:
let c = '\u{5520}';
println!("{}", c); // Output: 唠
Go:
char := '\u5520'
fmt.Printf("%c\n", char) // Output: 唠
CSS:
/* CSS content property */
.element::before {
content: "\005520"; /* 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%A0
MD5:
52908a44ed11077949df1741944ec783
SHA1:
b0b7e0433d181dc32ba8a1f3e662633d9c5f024b
Base64:
5ZSg