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