C:
char c = '\uBB90';
printf("%c\n", c); // Output: 뮐
JavaScript:
const char = '\uBB90';
console.log(char); // Output: 뮐
Java:
char c = '\uBB90';
System.out.println(c); // Output: 뮐
JSON:
{"text": "\uBB90"} // Value: 뮐
Python:
char = '\uBB90'
print(char) # Output: 뮐
Perl:
my $char = "\x{BB90}";
print $char; # Output: 뮐
PHP:
$char = "\x{BB90}";
echo $char; // Output: 뮐
Ruby:
char = "\u{BB90}"
puts char # Output: 뮐
Rust:
let c = '\u{BB90}';
println!("{}", c); // Output: 뮐
Go:
char := '\uBB90'
fmt.Printf("%c\n", char) // Output: 뮐
CSS:
/* CSS content property */
.element::before {
content: "\00BB90"; /* 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%AE%90
MD5:
d8731fdbc426756e73662fbe0371cb07
SHA1:
e160b889fd308b7023b16d5348dc4ddce3680254
Base64:
666Q