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