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