C:
char c = '\u5D14';
printf("%c\n", c); // Output: 崔
JavaScript:
const char = '\u5D14';
console.log(char); // Output: 崔
Java:
char c = '\u5D14';
System.out.println(c); // Output: 崔
JSON:
{"text": "\u5D14"} // Value: 崔
Python:
char = '\u5D14'
print(char) # Output: 崔
Perl:
my $char = "\x{5D14}";
print $char; # Output: 崔
PHP:
$char = "\x{5D14}";
echo $char; // Output: 崔
Ruby:
char = "\u{5D14}"
puts char # Output: 崔
Rust:
let c = '\u{5D14}';
println!("{}", c); // Output: 崔
Go:
char := '\u5D14'
fmt.Printf("%c\n", char) // Output: 崔
CSS:
/* CSS content property */
.element::before {
content: "\005D14"; /* 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%B4%94
MD5:
d9af302380367f256f2cd9dbad314dc7
SHA1:
7a6d6c0826eab95e832cf7e4f948f63d4fb2c08b
Base64:
5bSU