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