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