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