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