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