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