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