C:
char c = '\uD6D0';
printf("%c\n", c); // Output: 훐
JavaScript:
const char = '\uD6D0';
console.log(char); // Output: 훐
Java:
char c = '\uD6D0';
System.out.println(c); // Output: 훐
JSON:
{"text": "\uD6D0"} // Value: 훐
Python:
char = '\uD6D0'
print(char) # Output: 훐
Perl:
my $char = "\x{D6D0}";
print $char; # Output: 훐
PHP:
$char = "\x{D6D0}";
echo $char; // Output: 훐
Ruby:
char = "\u{D6D0}"
puts char # Output: 훐
Rust:
let c = '\u{D6D0}';
println!("{}", c); // Output: 훐
Go:
char := '\uD6D0'
fmt.Printf("%c\n", char) // Output: 훐
CSS:
/* CSS content property */
.element::before {
content: "\00D6D0"; /* 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%90
MD5:
49266f574f3e4566231556f8028b2181
SHA1:
496f0e1b139d5790a73e2958024213fdc8b60679
Base64:
7ZuQ