C:
char c = '\u564B';
printf("%c\n", c); // Output: 噋
JavaScript:
const char = '\u564B';
console.log(char); // Output: 噋
Java:
char c = '\u564B';
System.out.println(c); // Output: 噋
JSON:
{"text": "\u564B"} // Value: 噋
Python:
char = '\u564B'
print(char) # Output: 噋
Perl:
my $char = "\x{564B}";
print $char; # Output: 噋
PHP:
$char = "\x{564B}";
echo $char; // Output: 噋
Ruby:
char = "\u{564B}"
puts char # Output: 噋
Rust:
let c = '\u{564B}';
println!("{}", c); // Output: 噋
Go:
char := '\u564B'
fmt.Printf("%c\n", char) // Output: 噋
CSS:
/* CSS content property */
.element::before {
content: "\00564B"; /* 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%99%8B
MD5:
9533e4fa067b7cdaef20cc0758427d9b
SHA1:
302b12cca5b37d06c755cb577be5ac1dfb1f2c50
Base64:
5ZmL