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