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