C:
char c = '\uBB1E';
printf("%c\n", c); // Output: 묞
JavaScript:
const char = '\uBB1E';
console.log(char); // Output: 묞
Java:
char c = '\uBB1E';
System.out.println(c); // Output: 묞
JSON:
{"text": "\uBB1E"} // Value: 묞
Python:
char = '\uBB1E'
print(char) # Output: 묞
Perl:
my $char = "\x{BB1E}";
print $char; # Output: 묞
PHP:
$char = "\x{BB1E}";
echo $char; // Output: 묞
Ruby:
char = "\u{BB1E}"
puts char # Output: 묞
Rust:
let c = '\u{BB1E}';
println!("{}", c); // Output: 묞
Go:
char := '\uBB1E'
fmt.Printf("%c\n", char) // Output: 묞
CSS:
/* CSS content property */
.element::before {
content: "\00BB1E"; /* 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%AC%9E
MD5:
4905e0921f4e1dc510f98edfc16b4c7b
SHA1:
5c840707b131413bc8d83eee45b5b44ca6d91313
Base64:
66ye