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