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