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