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