C:
char c = '\u28BF';
printf("%c\n", c); // Output: ⢿
JavaScript:
const char = '\u28BF';
console.log(char); // Output: ⢿
Java:
char c = '\u28BF';
System.out.println(c); // Output: ⢿
JSON:
{"text": "\u28BF"} // Value: ⢿
Python:
char = '\u28BF'
print(char) # Output: ⢿
Perl:
my $char = "\x{28BF}";
print $char; # Output: ⢿
PHP:
$char = "\x{28BF}";
echo $char; // Output: ⢿
Ruby:
char = "\u{28BF}"
puts char # Output: ⢿
Rust:
let c = '\u{28BF}';
println!("{}", c); // Output: ⢿
Go:
char := '\u28BF'
fmt.Printf("%c\n", char) // Output: ⢿
CSS:
/* CSS content property */
.element::before {
content: "\0028BF"; /* 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=%E2%A2%BF
MD5:
a5251b93828b0bdee009349dde2f9d96
SHA1:
cf8461b5fd70432276757d2a40da7591670f5606
Base64:
4qK/