C:
char c = '\uD54A';
printf("%c\n", c); // Output: 핊
JavaScript:
const char = '\uD54A';
console.log(char); // Output: 핊
Java:
char c = '\uD54A';
System.out.println(c); // Output: 핊
JSON:
{"text": "\uD54A"} // Value: 핊
Python:
char = '\uD54A'
print(char) # Output: 핊
Perl:
my $char = "\x{D54A}";
print $char; # Output: 핊
PHP:
$char = "\x{D54A}";
echo $char; // Output: 핊
Ruby:
char = "\u{D54A}"
puts char # Output: 핊
Rust:
let c = '\u{D54A}';
println!("{}", c); // Output: 핊
Go:
char := '\uD54A'
fmt.Printf("%c\n", char) // Output: 핊
CSS:
/* CSS content property */
.element::before {
content: "\00D54A"; /* 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%8A
MD5:
a05199b08934e51cf16f1b14a3357278
SHA1:
e90b34d13a1d9f9eb32c4cdf3980dad8d5fb5b86
Base64:
7ZWK