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