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