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