C:
char c = '\uD787';
printf("%c\n", c); // Output: 힇
JavaScript:
const char = '\uD787';
console.log(char); // Output: 힇
Java:
char c = '\uD787';
System.out.println(c); // Output: 힇
JSON:
{"text": "\uD787"} // Value: 힇
Python:
char = '\uD787'
print(char) # Output: 힇
Perl:
my $char = "\x{D787}";
print $char; # Output: 힇
PHP:
$char = "\x{D787}";
echo $char; // Output: 힇
Ruby:
char = "\u{D787}"
puts char # Output: 힇
Rust:
let c = '\u{D787}';
println!("{}", c); // Output: 힇
Go:
char := '\uD787'
fmt.Printf("%c\n", char) // Output: 힇
CSS:
/* CSS content property */
.element::before {
content: "\00D787"; /* 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%9E%87
MD5:
ec4b62bd809a6cbf206ac54cadafe1fd
SHA1:
1e2c88ecdbf483ad89546cd6273e15f1a1c5e013
Base64:
7Z6H