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