C:
char c = '\uB3AB';
printf("%c\n", c); // Output: 뎫
JavaScript:
const char = '\uB3AB';
console.log(char); // Output: 뎫
Java:
char c = '\uB3AB';
System.out.println(c); // Output: 뎫
JSON:
{"text": "\uB3AB"} // Value: 뎫
Python:
char = '\uB3AB'
print(char) # Output: 뎫
Perl:
my $char = "\x{B3AB}";
print $char; # Output: 뎫
PHP:
$char = "\x{B3AB}";
echo $char; // Output: 뎫
Ruby:
char = "\u{B3AB}"
puts char # Output: 뎫
Rust:
let c = '\u{B3AB}';
println!("{}", c); // Output: 뎫
Go:
char := '\uB3AB'
fmt.Printf("%c\n", char) // Output: 뎫
CSS:
/* CSS content property */
.element::before {
content: "\00B3AB"; /* 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%8E%AB
MD5:
132e0016e6c86c9d9921b72b85a8c81b
SHA1:
4f672c6011b7b0928bb31477355399bc069f7d13
Base64:
646r