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