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