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