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