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