C:
char c = '\u54CE';
printf("%c\n", c); // Output: 哎
JavaScript:
const char = '\u54CE';
console.log(char); // Output: 哎
Java:
char c = '\u54CE';
System.out.println(c); // Output: 哎
JSON:
{"text": "\u54CE"} // Value: 哎
Python:
char = '\u54CE'
print(char) # Output: 哎
Perl:
my $char = "\x{54CE}";
print $char; # Output: 哎
PHP:
$char = "\x{54CE}";
echo $char; // Output: 哎
Ruby:
char = "\u{54CE}"
puts char # Output: 哎
Rust:
let c = '\u{54CE}';
println!("{}", c); // Output: 哎
Go:
char := '\u54CE'
fmt.Printf("%c\n", char) // Output: 哎
CSS:
/* CSS content property */
.element::before {
content: "\0054CE"; /* 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%93%8E
MD5:
14212ff0161c24a5c1a6908d2042ee00
SHA1:
3ddf489e9be3f15782cba12e65255e658ea9dd20
Base64:
5ZOO