C:
char c = '\uD583';
printf("%c\n", c); // Output: 햃
JavaScript:
const char = '\uD583';
console.log(char); // Output: 햃
Java:
char c = '\uD583';
System.out.println(c); // Output: 햃
JSON:
{"text": "\uD583"} // Value: 햃
Python:
char = '\uD583'
print(char) # Output: 햃
Perl:
my $char = "\x{D583}";
print $char; # Output: 햃
PHP:
$char = "\x{D583}";
echo $char; // Output: 햃
Ruby:
char = "\u{D583}"
puts char # Output: 햃
Rust:
let c = '\u{D583}';
println!("{}", c); // Output: 햃
Go:
char := '\uD583'
fmt.Printf("%c\n", char) // Output: 햃
CSS:
/* CSS content property */
.element::before {
content: "\00D583"; /* 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%96%83
MD5:
94773bfe31689083c3958f48aa528385
SHA1:
76b67f4fef321d7c3dbd1a16fd02f8fb959c617a
Base64:
7ZaD