C:
char c = '\uD786';
printf("%c\n", c); // Output: 힆
JavaScript:
const char = '\uD786';
console.log(char); // Output: 힆
Java:
char c = '\uD786';
System.out.println(c); // Output: 힆
JSON:
{"text": "\uD786"} // Value: 힆
Python:
char = '\uD786'
print(char) # Output: 힆
Perl:
my $char = "\x{D786}";
print $char; # Output: 힆
PHP:
$char = "\x{D786}";
echo $char; // Output: 힆
Ruby:
char = "\u{D786}"
puts char # Output: 힆
Rust:
let c = '\u{D786}';
println!("{}", c); // Output: 힆
Go:
char := '\uD786'
fmt.Printf("%c\n", char) // Output: 힆
CSS:
/* CSS content property */
.element::before {
content: "\00D786"; /* 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%86
MD5:
b7bb08a01ffb48347938b74f117fedfb
SHA1:
96008d16e6cc152cfa87a022b16243ad9a991737
Base64:
7Z6G