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