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