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