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