C:
char c = '\uD55D';
printf("%c\n", c); // Output: 핝
JavaScript:
const char = '\uD55D';
console.log(char); // Output: 핝
Java:
char c = '\uD55D';
System.out.println(c); // Output: 핝
JSON:
{"text": "\uD55D"} // Value: 핝
Python:
char = '\uD55D'
print(char) # Output: 핝
Perl:
my $char = "\x{D55D}";
print $char; # Output: 핝
PHP:
$char = "\x{D55D}";
echo $char; // Output: 핝
Ruby:
char = "\u{D55D}"
puts char # Output: 핝
Rust:
let c = '\u{D55D}';
println!("{}", c); // Output: 핝
Go:
char := '\uD55D'
fmt.Printf("%c\n", char) // Output: 핝
CSS:
/* CSS content property */
.element::before {
content: "\00D55D"; /* 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%95%9D
MD5:
4bbc6c8e47aa284918b0f6e4eb38a2e0
SHA1:
51dc98922394e4d2bc4d6b823a70a64fab7bcf18
Base64:
7ZWd