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