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