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