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