C:
char c = '\uD7A3';
printf("%c\n", c); // Output: 힣
JavaScript:
const char = '\uD7A3';
console.log(char); // Output: 힣
Java:
char c = '\uD7A3';
System.out.println(c); // Output: 힣
JSON:
{"text": "\uD7A3"} // Value: 힣
Python:
char = '\uD7A3'
print(char) # Output: 힣
Perl:
my $char = "\x{D7A3}";
print $char; # Output: 힣
PHP:
$char = "\x{D7A3}";
echo $char; // Output: 힣
Ruby:
char = "\u{D7A3}"
puts char # Output: 힣
Rust:
let c = '\u{D7A3}';
println!("{}", c); // Output: 힣
Go:
char := '\uD7A3'
fmt.Printf("%c\n", char) // Output: 힣
CSS:
/* CSS content property */
.element::before {
content: "\00D7A3"; /* 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%9E%A3
MD5:
e07d269dd4d381687705912eb8e47342
SHA1:
659d4e47a920b83a262b91585866db49bcb3343c
Base64:
7Z6j