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