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