C:
char c = '\u2887';
printf("%c\n", c); // Output: ⢇
JavaScript:
const char = '\u2887';
console.log(char); // Output: ⢇
Java:
char c = '\u2887';
System.out.println(c); // Output: ⢇
JSON:
{"text": "\u2887"} // Value: ⢇
Python:
char = '\u2887'
print(char) # Output: ⢇
Perl:
my $char = "\x{2887}";
print $char; # Output: ⢇
PHP:
$char = "\x{2887}";
echo $char; // Output: ⢇
Ruby:
char = "\u{2887}"
puts char # Output: ⢇
Rust:
let c = '\u{2887}';
println!("{}", c); // Output: ⢇
Go:
char := '\u2887'
fmt.Printf("%c\n", char) // Output: ⢇
CSS:
/* CSS content property */
.element::before {
content: "\002887"; /* 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%87
MD5:
10e3d59a78ead5f74b8e04918f5d81c0
SHA1:
fd8671cc0773e6405856c23125189eff6f2d776a
Base64:
4qKH