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