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