C:
char c = '\uD628';
printf("%c\n", c); // Output: 혨
JavaScript:
const char = '\uD628';
console.log(char); // Output: 혨
Java:
char c = '\uD628';
System.out.println(c); // Output: 혨
JSON:
{"text": "\uD628"} // Value: 혨
Python:
char = '\uD628'
print(char) # Output: 혨
Perl:
my $char = "\x{D628}";
print $char; # Output: 혨
PHP:
$char = "\x{D628}";
echo $char; // Output: 혨
Ruby:
char = "\u{D628}"
puts char # Output: 혨
Rust:
let c = '\u{D628}';
println!("{}", c); // Output: 혨
Go:
char := '\uD628'
fmt.Printf("%c\n", char) // Output: 혨
CSS:
/* CSS content property */
.element::before {
content: "\00D628"; /* 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%A8
MD5:
54222b94ed9ae47d877aa7c20982ed85
SHA1:
16fd6152c6d1518b0edebd07dd581f99497d5582
Base64:
7Zio