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