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