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