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