C:
char c = '\uD66F';
printf("%c\n", c); // Output: 홯
JavaScript:
const char = '\uD66F';
console.log(char); // Output: 홯
Java:
char c = '\uD66F';
System.out.println(c); // Output: 홯
JSON:
{"text": "\uD66F"} // Value: 홯
Python:
char = '\uD66F'
print(char) # Output: 홯
Perl:
my $char = "\x{D66F}";
print $char; # Output: 홯
PHP:
$char = "\x{D66F}";
echo $char; // Output: 홯
Ruby:
char = "\u{D66F}"
puts char # Output: 홯
Rust:
let c = '\u{D66F}';
println!("{}", c); // Output: 홯
Go:
char := '\uD66F'
fmt.Printf("%c\n", char) // Output: 홯
CSS:
/* CSS content property */
.element::before {
content: "\00D66F"; /* 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%99%AF
MD5:
4a67dd2ca959375e6990ab64b4492d31
SHA1:
b9f66500d4ba35bf0e6e19943e43452cd15eeafd
Base64:
7Zmv