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