C:
char c = '\uD56A';
printf("%c\n", c); // Output: 핪
JavaScript:
const char = '\uD56A';
console.log(char); // Output: 핪
Java:
char c = '\uD56A';
System.out.println(c); // Output: 핪
JSON:
{"text": "\uD56A"} // Value: 핪
Python:
char = '\uD56A'
print(char) # Output: 핪
Perl:
my $char = "\x{D56A}";
print $char; # Output: 핪
PHP:
$char = "\x{D56A}";
echo $char; // Output: 핪
Ruby:
char = "\u{D56A}"
puts char # Output: 핪
Rust:
let c = '\u{D56A}';
println!("{}", c); // Output: 핪
Go:
char := '\uD56A'
fmt.Printf("%c\n", char) // Output: 핪
CSS:
/* CSS content property */
.element::before {
content: "\00D56A"; /* 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%95%AA
MD5:
e8a4f0033bc8a0627214d790753bf8f8
SHA1:
68975599fd78c3482610c38d971035d9406033c9
Base64:
7ZWq