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