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