C:
char c = '\uBEAB';
printf("%c\n", c); // Output: 뺫
JavaScript:
const char = '\uBEAB';
console.log(char); // Output: 뺫
Java:
char c = '\uBEAB';
System.out.println(c); // Output: 뺫
JSON:
{"text": "\uBEAB"} // Value: 뺫
Python:
char = '\uBEAB'
print(char) # Output: 뺫
Perl:
my $char = "\x{BEAB}";
print $char; # Output: 뺫
PHP:
$char = "\x{BEAB}";
echo $char; // Output: 뺫
Ruby:
char = "\u{BEAB}"
puts char # Output: 뺫
Rust:
let c = '\u{BEAB}';
println!("{}", c); // Output: 뺫
Go:
char := '\uBEAB'
fmt.Printf("%c\n", char) // Output: 뺫
CSS:
/* CSS content property */
.element::before {
content: "\00BEAB"; /* 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%BA%AB
MD5:
536a15c7828dece7dc1b2bacbf1b094b
SHA1:
5535098056b997e0e6f6d469d8b20d961cdf4e16
Base64:
67qr