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