C:
char c = '\uD668';
printf("%c\n", c); // Output: 홨
JavaScript:
const char = '\uD668';
console.log(char); // Output: 홨
Java:
char c = '\uD668';
System.out.println(c); // Output: 홨
JSON:
{"text": "\uD668"} // Value: 홨
Python:
char = '\uD668'
print(char) # Output: 홨
Perl:
my $char = "\x{D668}";
print $char; # Output: 홨
PHP:
$char = "\x{D668}";
echo $char; // Output: 홨
Ruby:
char = "\u{D668}"
puts char # Output: 홨
Rust:
let c = '\u{D668}';
println!("{}", c); // Output: 홨
Go:
char := '\uD668'
fmt.Printf("%c\n", char) // Output: 홨
CSS:
/* CSS content property */
.element::before {
content: "\00D668"; /* 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%A8
MD5:
26659a6d8ac4995a5b08f7178880f6e7
SHA1:
3b81f63212f9fc6f4f25edf5164b409ba049b8e9
Base64:
7Zmo