C:
char c = '\uD3AF';
printf("%c\n", c); // Output: 펯
JavaScript:
const char = '\uD3AF';
console.log(char); // Output: 펯
Java:
char c = '\uD3AF';
System.out.println(c); // Output: 펯
JSON:
{"text": "\uD3AF"} // Value: 펯
Python:
char = '\uD3AF'
print(char) # Output: 펯
Perl:
my $char = "\x{D3AF}";
print $char; # Output: 펯
PHP:
$char = "\x{D3AF}";
echo $char; // Output: 펯
Ruby:
char = "\u{D3AF}"
puts char # Output: 펯
Rust:
let c = '\u{D3AF}';
println!("{}", c); // Output: 펯
Go:
char := '\uD3AF'
fmt.Printf("%c\n", char) // Output: 펯
CSS:
/* CSS content property */
.element::before {
content: "\00D3AF"; /* 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%AF
MD5:
734f87d06dbef83603c6831953bc6d4c
SHA1:
3c234fac68aa07cb160daa28844d196e2f450de9
Base64:
7Y6v