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