C:
char c = '\uD5F0';
printf("%c\n", c); // Output: 헰
JavaScript:
const char = '\uD5F0';
console.log(char); // Output: 헰
Java:
char c = '\uD5F0';
System.out.println(c); // Output: 헰
JSON:
{"text": "\uD5F0"} // Value: 헰
Python:
char = '\uD5F0'
print(char) # Output: 헰
Perl:
my $char = "\x{D5F0}";
print $char; # Output: 헰
PHP:
$char = "\x{D5F0}";
echo $char; // Output: 헰
Ruby:
char = "\u{D5F0}"
puts char # Output: 헰
Rust:
let c = '\u{D5F0}';
println!("{}", c); // Output: 헰
Go:
char := '\uD5F0'
fmt.Printf("%c\n", char) // Output: 헰
CSS:
/* CSS content property */
.element::before {
content: "\00D5F0"; /* 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%B0
MD5:
a8f4e3354973d8b80c5f330664bf7c5d
SHA1:
22210d8d33b872b1a06bd66c9a00fc3946173316
Base64:
7Zew