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