C:
char c = '\uB4CB';
printf("%c\n", c); // Output: 듋
JavaScript:
const char = '\uB4CB';
console.log(char); // Output: 듋
Java:
char c = '\uB4CB';
System.out.println(c); // Output: 듋
JSON:
{"text": "\uB4CB"} // Value: 듋
Python:
char = '\uB4CB'
print(char) # Output: 듋
Perl:
my $char = "\x{B4CB}";
print $char; # Output: 듋
PHP:
$char = "\x{B4CB}";
echo $char; // Output: 듋
Ruby:
char = "\u{B4CB}"
puts char # Output: 듋
Rust:
let c = '\u{B4CB}';
println!("{}", c); // Output: 듋
Go:
char := '\uB4CB'
fmt.Printf("%c\n", char) // Output: 듋
CSS:
/* CSS content property */
.element::before {
content: "\00B4CB"; /* 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%8B
MD5:
45036d622c17e91f60a98fe754d501a5
SHA1:
803efe6375b0085bf4ccd61cb619dde0565c87d6
Base64:
65OL