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