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