C:
char c = '\uBBE8';
printf("%c\n", c); // Output: 믨
JavaScript:
const char = '\uBBE8';
console.log(char); // Output: 믨
Java:
char c = '\uBBE8';
System.out.println(c); // Output: 믨
JSON:
{"text": "\uBBE8"} // Value: 믨
Python:
char = '\uBBE8'
print(char) # Output: 믨
Perl:
my $char = "\x{BBE8}";
print $char; # Output: 믨
PHP:
$char = "\x{BBE8}";
echo $char; // Output: 믨
Ruby:
char = "\u{BBE8}"
puts char # Output: 믨
Rust:
let c = '\u{BBE8}';
println!("{}", c); // Output: 믨
Go:
char := '\uBBE8'
fmt.Printf("%c\n", char) // Output: 믨
CSS:
/* CSS content property */
.element::before {
content: "\00BBE8"; /* 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%AF%A8
MD5:
1740d72d52f41d7de1256418d79e5f26
SHA1:
ad7607ceab82729d04b17e96ed179b2a2176bb39
Base64:
66+o