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