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