C:
char c = '\u2895';
printf("%c\n", c); // Output: ⢕
JavaScript:
const char = '\u2895';
console.log(char); // Output: ⢕
Java:
char c = '\u2895';
System.out.println(c); // Output: ⢕
JSON:
{"text": "\u2895"} // Value: ⢕
Python:
char = '\u2895'
print(char) # Output: ⢕
Perl:
my $char = "\x{2895}";
print $char; # Output: ⢕
PHP:
$char = "\x{2895}";
echo $char; // Output: ⢕
Ruby:
char = "\u{2895}"
puts char # Output: ⢕
Rust:
let c = '\u{2895}';
println!("{}", c); // Output: ⢕
Go:
char := '\u2895'
fmt.Printf("%c\n", char) // Output: ⢕
CSS:
/* CSS content property */
.element::before {
content: "\002895"; /* 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%95
MD5:
0c61e9748b0b050b1ab38d5d8e7a9cb1
SHA1:
5156b2355b51a14e493362621bf5efb68791270a
Base64:
4qKV