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