C:
char c = '\uD6E7';
printf("%c\n", c); // Output: 훧
JavaScript:
const char = '\uD6E7';
console.log(char); // Output: 훧
Java:
char c = '\uD6E7';
System.out.println(c); // Output: 훧
JSON:
{"text": "\uD6E7"} // Value: 훧
Python:
char = '\uD6E7'
print(char) # Output: 훧
Perl:
my $char = "\x{D6E7}";
print $char; # Output: 훧
PHP:
$char = "\x{D6E7}";
echo $char; // Output: 훧
Ruby:
char = "\u{D6E7}"
puts char # Output: 훧
Rust:
let c = '\u{D6E7}';
println!("{}", c); // Output: 훧
Go:
char := '\uD6E7'
fmt.Printf("%c\n", char) // Output: 훧
CSS:
/* CSS content property */
.element::before {
content: "\00D6E7"; /* 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%9B%A7
MD5:
477cb09e0d979aafdded01de3fae7343
SHA1:
2d70138f5d9a46a10cacc9ac298d92beae629a20
Base64:
7Zun