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