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