C:
char c = '\uBF88';
printf("%c\n", c); // Output: 뾈
JavaScript:
const char = '\uBF88';
console.log(char); // Output: 뾈
Java:
char c = '\uBF88';
System.out.println(c); // Output: 뾈
JSON:
{"text": "\uBF88"} // Value: 뾈
Python:
char = '\uBF88'
print(char) # Output: 뾈
Perl:
my $char = "\x{BF88}";
print $char; # Output: 뾈
PHP:
$char = "\x{BF88}";
echo $char; // Output: 뾈
Ruby:
char = "\u{BF88}"
puts char # Output: 뾈
Rust:
let c = '\u{BF88}';
println!("{}", c); // Output: 뾈
Go:
char := '\uBF88'
fmt.Printf("%c\n", char) // Output: 뾈
CSS:
/* CSS content property */
.element::before {
content: "\00BF88"; /* 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%BE%88
MD5:
074a1c83cc2c0a1796db33987a935efd
SHA1:
ae59194da928908c49ddcb458ce8b98f98b80f76
Base64:
676I