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