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