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