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