C:
char c = '\u5507';
printf("%c\n", c); // Output: 唇
JavaScript:
const char = '\u5507';
console.log(char); // Output: 唇
Java:
char c = '\u5507';
System.out.println(c); // Output: 唇
JSON:
{"text": "\u5507"} // Value: 唇
Python:
char = '\u5507'
print(char) # Output: 唇
Perl:
my $char = "\x{5507}";
print $char; # Output: 唇
PHP:
$char = "\x{5507}";
echo $char; // Output: 唇
Ruby:
char = "\u{5507}"
puts char # Output: 唇
Rust:
let c = '\u{5507}';
println!("{}", c); // Output: 唇
Go:
char := '\u5507'
fmt.Printf("%c\n", char) // Output: 唇
CSS:
/* CSS content property */
.element::before {
content: "\005507"; /* 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%87
MD5:
e830f1715c57e5af923bd6d207b13ec0
SHA1:
3b13d97e8f3e28a56f22ccc62a6b2ecc23864294
Base64:
5ZSH