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