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