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