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