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