C:
char c = '\u5D6C';
printf("%c\n", c); // Output: 嵬
JavaScript:
const char = '\u5D6C';
console.log(char); // Output: 嵬
Java:
char c = '\u5D6C';
System.out.println(c); // Output: 嵬
JSON:
{"text": "\u5D6C"} // Value: 嵬
Python:
char = '\u5D6C'
print(char) # Output: 嵬
Perl:
my $char = "\x{5D6C}";
print $char; # Output: 嵬
PHP:
$char = "\x{5D6C}";
echo $char; // Output: 嵬
Ruby:
char = "\u{5D6C}"
puts char # Output: 嵬
Rust:
let c = '\u{5D6C}';
println!("{}", c); // Output: 嵬
Go:
char := '\u5D6C'
fmt.Printf("%c\n", char) // Output: 嵬
CSS:
/* CSS content property */
.element::before {
content: "\005D6C"; /* 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%B5%AC
MD5:
54a5a168db699dff48725b08ef5cece3
SHA1:
1f60f1a5de006ef27ee5592c49bf4131cc1945a7
Base64:
5bWs