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