C:
char c = '\uD0A1';
printf("%c\n", c); // Output: 킡
JavaScript:
const char = '\uD0A1';
console.log(char); // Output: 킡
Java:
char c = '\uD0A1';
System.out.println(c); // Output: 킡
JSON:
{"text": "\uD0A1"} // Value: 킡
Python:
char = '\uD0A1'
print(char) # Output: 킡
Perl:
my $char = "\x{D0A1}";
print $char; # Output: 킡
PHP:
$char = "\x{D0A1}";
echo $char; // Output: 킡
Ruby:
char = "\u{D0A1}"
puts char # Output: 킡
Rust:
let c = '\u{D0A1}';
println!("{}", c); // Output: 킡
Go:
char := '\uD0A1'
fmt.Printf("%c\n", char) // Output: 킡
CSS:
/* CSS content property */
.element::before {
content: "\00D0A1"; /* 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%A1
MD5:
8f917fc853cefd8f6c8eaf56e3f0a732
SHA1:
804913fd9eb6c5fe7394930d1780cf9ea8920063
Base64:
7YKh