C:
char c = '\uD3A0';
printf("%c\n", c); // Output: 펠
JavaScript:
const char = '\uD3A0';
console.log(char); // Output: 펠
Java:
char c = '\uD3A0';
System.out.println(c); // Output: 펠
JSON:
{"text": "\uD3A0"} // Value: 펠
Python:
char = '\uD3A0'
print(char) # Output: 펠
Perl:
my $char = "\x{D3A0}";
print $char; # Output: 펠
PHP:
$char = "\x{D3A0}";
echo $char; // Output: 펠
Ruby:
char = "\u{D3A0}"
puts char # Output: 펠
Rust:
let c = '\u{D3A0}';
println!("{}", c); // Output: 펠
Go:
char := '\uD3A0'
fmt.Printf("%c\n", char) // Output: 펠
CSS:
/* CSS content property */
.element::before {
content: "\00D3A0"; /* 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%A0
MD5:
b20ca9aebbcdee46202278340381a786
SHA1:
767cc795db3f5c583a5bf4da3ea990675635faca
Base64:
7Y6g