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