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