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