C:
char c = '\uD672';
printf("%c\n", c); // Output: 홲
JavaScript:
const char = '\uD672';
console.log(char); // Output: 홲
Java:
char c = '\uD672';
System.out.println(c); // Output: 홲
JSON:
{"text": "\uD672"} // Value: 홲
Python:
char = '\uD672'
print(char) # Output: 홲
Perl:
my $char = "\x{D672}";
print $char; # Output: 홲
PHP:
$char = "\x{D672}";
echo $char; // Output: 홲
Ruby:
char = "\u{D672}"
puts char # Output: 홲
Rust:
let c = '\u{D672}';
println!("{}", c); // Output: 홲
Go:
char := '\uD672'
fmt.Printf("%c\n", char) // Output: 홲
CSS:
/* CSS content property */
.element::before {
content: "\00D672"; /* 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%B2
MD5:
3e7dbac4977dbd4236844dcf56ac3715
SHA1:
8b69f69a650badfa8851ecb21b391edd4fc95188
Base64:
7Zmy