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