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