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