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