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