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