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