C:
char c = '\uBB79';
printf("%c\n", c); // Output: 뭹
JavaScript:
const char = '\uBB79';
console.log(char); // Output: 뭹
Java:
char c = '\uBB79';
System.out.println(c); // Output: 뭹
JSON:
{"text": "\uBB79"} // Value: 뭹
Python:
char = '\uBB79'
print(char) # Output: 뭹
Perl:
my $char = "\x{BB79}";
print $char; # Output: 뭹
PHP:
$char = "\x{BB79}";
echo $char; // Output: 뭹
Ruby:
char = "\u{BB79}"
puts char # Output: 뭹
Rust:
let c = '\u{BB79}';
println!("{}", c); // Output: 뭹
Go:
char := '\uBB79'
fmt.Printf("%c\n", char) // Output: 뭹
CSS:
/* CSS content property */
.element::before {
content: "\00BB79"; /* 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%B9
MD5:
570712e9021c47d5ffc5b44e1e0476ea
SHA1:
44c9086cf7bb81dbccaf61ad9d8e8a02a785061a
Base64:
6625