C:
char c = '\uD6E9';
printf("%c\n", c); // Output: 훩
JavaScript:
const char = '\uD6E9';
console.log(char); // Output: 훩
Java:
char c = '\uD6E9';
System.out.println(c); // Output: 훩
JSON:
{"text": "\uD6E9"} // Value: 훩
Python:
char = '\uD6E9'
print(char) # Output: 훩
Perl:
my $char = "\x{D6E9}";
print $char; # Output: 훩
PHP:
$char = "\x{D6E9}";
echo $char; // Output: 훩
Ruby:
char = "\u{D6E9}"
puts char # Output: 훩
Rust:
let c = '\u{D6E9}';
println!("{}", c); // Output: 훩
Go:
char := '\uD6E9'
fmt.Printf("%c\n", char) // Output: 훩
CSS:
/* CSS content property */
.element::before {
content: "\00D6E9"; /* 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%A9
MD5:
87cb804c4d8e0441ec3a3e5175e0f3d5
SHA1:
78dd2083d9bcfbad0fde3ff338877dc030b83679
Base64:
7Zup