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