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