C:
char c = '\uD3EC';
printf("%c\n", c); // Output: 포
JavaScript:
const char = '\uD3EC';
console.log(char); // Output: 포
Java:
char c = '\uD3EC';
System.out.println(c); // Output: 포
JSON:
{"text": "\uD3EC"} // Value: 포
Python:
char = '\uD3EC'
print(char) # Output: 포
Perl:
my $char = "\x{D3EC}";
print $char; # Output: 포
PHP:
$char = "\x{D3EC}";
echo $char; // Output: 포
Ruby:
char = "\u{D3EC}"
puts char # Output: 포
Rust:
let c = '\u{D3EC}';
println!("{}", c); // Output: 포
Go:
char := '\uD3EC'
fmt.Printf("%c\n", char) // Output: 포
CSS:
/* CSS content property */
.element::before {
content: "\00D3EC"; /* 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%AC
MD5:
5653462504de31c23d02c56e4a9408c9
SHA1:
c6113c0fa000b9bc00a63a2512ab14fe4aee7762
Base64:
7Y+s