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