C:
char c = '\uD40A';
printf("%c\n", c); // Output: 퐊
JavaScript:
const char = '\uD40A';
console.log(char); // Output: 퐊
Java:
char c = '\uD40A';
System.out.println(c); // Output: 퐊
JSON:
{"text": "\uD40A"} // Value: 퐊
Python:
char = '\uD40A'
print(char) # Output: 퐊
Perl:
my $char = "\x{D40A}";
print $char; # Output: 퐊
PHP:
$char = "\x{D40A}";
echo $char; // Output: 퐊
Ruby:
char = "\u{D40A}"
puts char # Output: 퐊
Rust:
let c = '\u{D40A}';
println!("{}", c); // Output: 퐊
Go:
char := '\uD40A'
fmt.Printf("%c\n", char) // Output: 퐊
CSS:
/* CSS content property */
.element::before {
content: "\00D40A"; /* 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%8A
MD5:
0cb80fe8aefee602c79baadd377d39a5
SHA1:
cba80990e219350c620efc76ed2712cc3ee692e4
Base64:
7ZCK