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