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