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