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