C:
char c = '\u2896';
printf("%c\n", c); // Output: ⢖
JavaScript:
const char = '\u2896';
console.log(char); // Output: ⢖
Java:
char c = '\u2896';
System.out.println(c); // Output: ⢖
JSON:
{"text": "\u2896"} // Value: ⢖
Python:
char = '\u2896'
print(char) # Output: ⢖
Perl:
my $char = "\x{2896}";
print $char; # Output: ⢖
PHP:
$char = "\x{2896}";
echo $char; // Output: ⢖
Ruby:
char = "\u{2896}"
puts char # Output: ⢖
Rust:
let c = '\u{2896}';
println!("{}", c); // Output: ⢖
Go:
char := '\u2896'
fmt.Printf("%c\n", char) // Output: ⢖
CSS:
/* CSS content property */
.element::before {
content: "\002896"; /* 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%96
MD5:
f5c80bbb02f16e22a8dbe8bdbe07a08b
SHA1:
a06fa444e678ec64d2269363046a65201be1d88a
Base64:
4qKW