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