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