C:
char c = '\uBB7B';
printf("%c\n", c); // Output: 뭻
JavaScript:
const char = '\uBB7B';
console.log(char); // Output: 뭻
Java:
char c = '\uBB7B';
System.out.println(c); // Output: 뭻
JSON:
{"text": "\uBB7B"} // Value: 뭻
Python:
char = '\uBB7B'
print(char) # Output: 뭻
Perl:
my $char = "\x{BB7B}";
print $char; # Output: 뭻
PHP:
$char = "\x{BB7B}";
echo $char; // Output: 뭻
Ruby:
char = "\u{BB7B}"
puts char # Output: 뭻
Rust:
let c = '\u{BB7B}';
println!("{}", c); // Output: 뭻
Go:
char := '\uBB7B'
fmt.Printf("%c\n", char) // Output: 뭻
CSS:
/* CSS content property */
.element::before {
content: "\00BB7B"; /* 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%BB
MD5:
65af854c68c61fed0684586cde15b1e0
SHA1:
2b07debcb0fb32602bc9948aeb72053643bba013
Base64:
6627