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