C:
char c = '\uBF78';
printf("%c\n", c); // Output: 뽸
JavaScript:
const char = '\uBF78';
console.log(char); // Output: 뽸
Java:
char c = '\uBF78';
System.out.println(c); // Output: 뽸
JSON:
{"text": "\uBF78"} // Value: 뽸
Python:
char = '\uBF78'
print(char) # Output: 뽸
Perl:
my $char = "\x{BF78}";
print $char; # Output: 뽸
PHP:
$char = "\x{BF78}";
echo $char; // Output: 뽸
Ruby:
char = "\u{BF78}"
puts char # Output: 뽸
Rust:
let c = '\u{BF78}';
println!("{}", c); // Output: 뽸
Go:
char := '\uBF78'
fmt.Printf("%c\n", char) // Output: 뽸
CSS:
/* CSS content property */
.element::before {
content: "\00BF78"; /* 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%B8
MD5:
07d15a39a1a2bebc62da7db1df7db4a9
SHA1:
b0bfd10627390e79601f76a0de4eef38ec55bd65
Base64:
6724