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