C:
char c = '\uD59C';
printf("%c\n", c); // Output: 햜
JavaScript:
const char = '\uD59C';
console.log(char); // Output: 햜
Java:
char c = '\uD59C';
System.out.println(c); // Output: 햜
JSON:
{"text": "\uD59C"} // Value: 햜
Python:
char = '\uD59C'
print(char) # Output: 햜
Perl:
my $char = "\x{D59C}";
print $char; # Output: 햜
PHP:
$char = "\x{D59C}";
echo $char; // Output: 햜
Ruby:
char = "\u{D59C}"
puts char # Output: 햜
Rust:
let c = '\u{D59C}';
println!("{}", c); // Output: 햜
Go:
char := '\uD59C'
fmt.Printf("%c\n", char) // Output: 햜
CSS:
/* CSS content property */
.element::before {
content: "\00D59C"; /* 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%9C
MD5:
13585ce64507a277e9f3ac91cf904956
SHA1:
816a924b15c940d082abe47afbdd0dd812e454b7
Base64:
7Zac