C:
char c = '\uBFC7';
printf("%c\n", c); // Output: 뿇
JavaScript:
const char = '\uBFC7';
console.log(char); // Output: 뿇
Java:
char c = '\uBFC7';
System.out.println(c); // Output: 뿇
JSON:
{"text": "\uBFC7"} // Value: 뿇
Python:
char = '\uBFC7'
print(char) # Output: 뿇
Perl:
my $char = "\x{BFC7}";
print $char; # Output: 뿇
PHP:
$char = "\x{BFC7}";
echo $char; // Output: 뿇
Ruby:
char = "\u{BFC7}"
puts char # Output: 뿇
Rust:
let c = '\u{BFC7}';
println!("{}", c); // Output: 뿇
Go:
char := '\uBFC7'
fmt.Printf("%c\n", char) // Output: 뿇
CSS:
/* CSS content property */
.element::before {
content: "\00BFC7"; /* 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%BF%87
MD5:
a01249e991cb8f162ac708ef55a5f5c0
SHA1:
ed16189ac818626184545a16a3419e6a3a9d5221
Base64:
67+H