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