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