C:
char c = '\uBB5A';
printf("%c\n", c); // Output: 뭚
JavaScript:
const char = '\uBB5A';
console.log(char); // Output: 뭚
Java:
char c = '\uBB5A';
System.out.println(c); // Output: 뭚
JSON:
{"text": "\uBB5A"} // Value: 뭚
Python:
char = '\uBB5A'
print(char) # Output: 뭚
Perl:
my $char = "\x{BB5A}";
print $char; # Output: 뭚
PHP:
$char = "\x{BB5A}";
echo $char; // Output: 뭚
Ruby:
char = "\u{BB5A}"
puts char # Output: 뭚
Rust:
let c = '\u{BB5A}';
println!("{}", c); // Output: 뭚
Go:
char := '\uBB5A'
fmt.Printf("%c\n", char) // Output: 뭚
CSS:
/* CSS content property */
.element::before {
content: "\00BB5A"; /* 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%9A
MD5:
1635604d6fe4138933d32e9c70c13576
SHA1:
65c2c80e6870a4044ec1b30e053dde2d3a3bf853
Base64:
662a