C:
char c = '\uBB46';
printf("%c\n", c); // Output: 뭆
JavaScript:
const char = '\uBB46';
console.log(char); // Output: 뭆
Java:
char c = '\uBB46';
System.out.println(c); // Output: 뭆
JSON:
{"text": "\uBB46"} // Value: 뭆
Python:
char = '\uBB46'
print(char) # Output: 뭆
Perl:
my $char = "\x{BB46}";
print $char; # Output: 뭆
PHP:
$char = "\x{BB46}";
echo $char; // Output: 뭆
Ruby:
char = "\u{BB46}"
puts char # Output: 뭆
Rust:
let c = '\u{BB46}';
println!("{}", c); // Output: 뭆
Go:
char := '\uBB46'
fmt.Printf("%c\n", char) // Output: 뭆
CSS:
/* CSS content property */
.element::before {
content: "\00BB46"; /* 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%AD%86
MD5:
c3a1418c0adade8ee5a11cc2fc69d691
SHA1:
6881a17bf46dd39e3a21d43b8da386f90951c98c
Base64:
662G