C:
char c = '\uBAEB';
printf("%c\n", c); // Output: 뫫
JavaScript:
const char = '\uBAEB';
console.log(char); // Output: 뫫
Java:
char c = '\uBAEB';
System.out.println(c); // Output: 뫫
JSON:
{"text": "\uBAEB"} // Value: 뫫
Python:
char = '\uBAEB'
print(char) # Output: 뫫
Perl:
my $char = "\x{BAEB}";
print $char; # Output: 뫫
PHP:
$char = "\x{BAEB}";
echo $char; // Output: 뫫
Ruby:
char = "\u{BAEB}"
puts char # Output: 뫫
Rust:
let c = '\u{BAEB}';
println!("{}", c); // Output: 뫫
Go:
char := '\uBAEB'
fmt.Printf("%c\n", char) // Output: 뫫
CSS:
/* CSS content property */
.element::before {
content: "\00BAEB"; /* 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%AB%AB
MD5:
18ce536fe94ffe8034818e13b1da4ef5
SHA1:
14dddffe6da4f5007089d01782e0fc9eb6cf55ea
Base64:
66ur