C:
char c = '\uD34F';
printf("%c\n", c); // Output: 퍏
JavaScript:
const char = '\uD34F';
console.log(char); // Output: 퍏
Java:
char c = '\uD34F';
System.out.println(c); // Output: 퍏
JSON:
{"text": "\uD34F"} // Value: 퍏
Python:
char = '\uD34F'
print(char) # Output: 퍏
Perl:
my $char = "\x{D34F}";
print $char; # Output: 퍏
PHP:
$char = "\x{D34F}";
echo $char; // Output: 퍏
Ruby:
char = "\u{D34F}"
puts char # Output: 퍏
Rust:
let c = '\u{D34F}';
println!("{}", c); // Output: 퍏
Go:
char := '\uD34F'
fmt.Printf("%c\n", char) // Output: 퍏
CSS:
/* CSS content property */
.element::before {
content: "\00D34F"; /* 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%8D%8F
MD5:
616f1ac71914f0259c0624ebb8e780fb
SHA1:
268f6f633a5ca2ba3209620ef5005fd2f87b7383
Base64:
7Y2P