C:
char c = '\uD59B';
printf("%c\n", c); // Output: 햛
JavaScript:
const char = '\uD59B';
console.log(char); // Output: 햛
Java:
char c = '\uD59B';
System.out.println(c); // Output: 햛
JSON:
{"text": "\uD59B"} // Value: 햛
Python:
char = '\uD59B'
print(char) # Output: 햛
Perl:
my $char = "\x{D59B}";
print $char; # Output: 햛
PHP:
$char = "\x{D59B}";
echo $char; // Output: 햛
Ruby:
char = "\u{D59B}"
puts char # Output: 햛
Rust:
let c = '\u{D59B}';
println!("{}", c); // Output: 햛
Go:
char := '\uD59B'
fmt.Printf("%c\n", char) // Output: 햛
CSS:
/* CSS content property */
.element::before {
content: "\00D59B"; /* 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=%ED%96%9B
MD5:
7fdc90b78c02d0fc5e0fd40625a2a631
SHA1:
5b081fddaa45b105dae72e83372ac105c2fd0f7c
Base64:
7Zab