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