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