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