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