C:
char c = '\uBB49';
printf("%c\n", c); // Output: 뭉
JavaScript:
const char = '\uBB49';
console.log(char); // Output: 뭉
Java:
char c = '\uBB49';
System.out.println(c); // Output: 뭉
JSON:
{"text": "\uBB49"} // Value: 뭉
Python:
char = '\uBB49'
print(char) # Output: 뭉
Perl:
my $char = "\x{BB49}";
print $char; # Output: 뭉
PHP:
$char = "\x{BB49}";
echo $char; // Output: 뭉
Ruby:
char = "\u{BB49}"
puts char # Output: 뭉
Rust:
let c = '\u{BB49}';
println!("{}", c); // Output: 뭉
Go:
char := '\uBB49'
fmt.Printf("%c\n", char) // Output: 뭉
CSS:
/* CSS content property */
.element::before {
content: "\00BB49"; /* 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%89
MD5:
07e2ad1588eaed79c5d8bafcb16fad69
SHA1:
46c02acb1c5e1fb5cc3e71eafcdf9ca6d6eda0de
Base64:
662J