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