C:
char c = '\uBB76';
printf("%c\n", c); // Output: 뭶
JavaScript:
const char = '\uBB76';
console.log(char); // Output: 뭶
Java:
char c = '\uBB76';
System.out.println(c); // Output: 뭶
JSON:
{"text": "\uBB76"} // Value: 뭶
Python:
char = '\uBB76'
print(char) # Output: 뭶
Perl:
my $char = "\x{BB76}";
print $char; # Output: 뭶
PHP:
$char = "\x{BB76}";
echo $char; // Output: 뭶
Ruby:
char = "\u{BB76}"
puts char # Output: 뭶
Rust:
let c = '\u{BB76}';
println!("{}", c); // Output: 뭶
Go:
char := '\uBB76'
fmt.Printf("%c\n", char) // Output: 뭶
CSS:
/* CSS content property */
.element::before {
content: "\00BB76"; /* 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%B6
MD5:
52d7e476329fcff60ca0ababb892f0ea
SHA1:
e9ccea7a7184f2df513ae4021d4900de49f7fe43
Base64:
6622