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