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