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