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