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