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