C:
char c = '\uD3A9';
printf("%c\n", c); // Output: 펩
JavaScript:
const char = '\uD3A9';
console.log(char); // Output: 펩
Java:
char c = '\uD3A9';
System.out.println(c); // Output: 펩
JSON:
{"text": "\uD3A9"} // Value: 펩
Python:
char = '\uD3A9'
print(char) # Output: 펩
Perl:
my $char = "\x{D3A9}";
print $char; # Output: 펩
PHP:
$char = "\x{D3A9}";
echo $char; // Output: 펩
Ruby:
char = "\u{D3A9}"
puts char # Output: 펩
Rust:
let c = '\u{D3A9}';
println!("{}", c); // Output: 펩
Go:
char := '\uD3A9'
fmt.Printf("%c\n", char) // Output: 펩
CSS:
/* CSS content property */
.element::before {
content: "\00D3A9"; /* 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%A9
MD5:
4612cf3b7289010363d51dca2e3132ff
SHA1:
08434e2c55905bb7c0727eaee4147ede6ec7dfbe
Base64:
7Y6p