C:
char c = '\uD670';
printf("%c\n", c); // Output: 홰
JavaScript:
const char = '\uD670';
console.log(char); // Output: 홰
Java:
char c = '\uD670';
System.out.println(c); // Output: 홰
JSON:
{"text": "\uD670"} // Value: 홰
Python:
char = '\uD670'
print(char) # Output: 홰
Perl:
my $char = "\x{D670}";
print $char; # Output: 홰
PHP:
$char = "\x{D670}";
echo $char; // Output: 홰
Ruby:
char = "\u{D670}"
puts char # Output: 홰
Rust:
let c = '\u{D670}';
println!("{}", c); // Output: 홰
Go:
char := '\uD670'
fmt.Printf("%c\n", char) // Output: 홰
CSS:
/* CSS content property */
.element::before {
content: "\00D670"; /* 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%B0
MD5:
6961db0b80d9352731751555bfc15fb3
SHA1:
6cedc1c9f05d4da330c90acca6ff336a80baf14f
Base64:
7Zmw