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