C:
char c = '\uBB7A';
printf("%c\n", c); // Output: 뭺
JavaScript:
const char = '\uBB7A';
console.log(char); // Output: 뭺
Java:
char c = '\uBB7A';
System.out.println(c); // Output: 뭺
JSON:
{"text": "\uBB7A"} // Value: 뭺
Python:
char = '\uBB7A'
print(char) # Output: 뭺
Perl:
my $char = "\x{BB7A}";
print $char; # Output: 뭺
PHP:
$char = "\x{BB7A}";
echo $char; // Output: 뭺
Ruby:
char = "\u{BB7A}"
puts char # Output: 뭺
Rust:
let c = '\u{BB7A}';
println!("{}", c); // Output: 뭺
Go:
char := '\uBB7A'
fmt.Printf("%c\n", char) // Output: 뭺
CSS:
/* CSS content property */
.element::before {
content: "\00BB7A"; /* 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%BA
MD5:
3137ad4bce9fd5982eeb21b23940924a
SHA1:
1b8847b50bd7a5814dab7d597f332f33be65ab3a
Base64:
6626