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