C:
char c = '\uD3E1';
printf("%c\n", c); // Output: 폡
JavaScript:
const char = '\uD3E1';
console.log(char); // Output: 폡
Java:
char c = '\uD3E1';
System.out.println(c); // Output: 폡
JSON:
{"text": "\uD3E1"} // Value: 폡
Python:
char = '\uD3E1'
print(char) # Output: 폡
Perl:
my $char = "\x{D3E1}";
print $char; # Output: 폡
PHP:
$char = "\x{D3E1}";
echo $char; // Output: 폡
Ruby:
char = "\u{D3E1}"
puts char # Output: 폡
Rust:
let c = '\u{D3E1}';
println!("{}", c); // Output: 폡
Go:
char := '\uD3E1'
fmt.Printf("%c\n", char) // Output: 폡
CSS:
/* CSS content property */
.element::before {
content: "\00D3E1"; /* 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%8F%A1
MD5:
859e25a87f4e71d5e6762823169686b2
SHA1:
f6db71c76db558afbc398c7656972dce85c98025
Base64:
7Y+h