C:
char c = '\u2826';
printf("%c\n", c); // Output: ⠦
JavaScript:
const char = '\u2826';
console.log(char); // Output: ⠦
Java:
char c = '\u2826';
System.out.println(c); // Output: ⠦
JSON:
{"text": "\u2826"} // Value: ⠦
Python:
char = '\u2826'
print(char) # Output: ⠦
Perl:
my $char = "\x{2826}";
print $char; # Output: ⠦
PHP:
$char = "\x{2826}";
echo $char; // Output: ⠦
Ruby:
char = "\u{2826}"
puts char # Output: ⠦
Rust:
let c = '\u{2826}';
println!("{}", c); // Output: ⠦
Go:
char := '\u2826'
fmt.Printf("%c\n", char) // Output: ⠦
CSS:
/* CSS content property */
.element::before {
content: "\002826"; /* 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%A0%A6
MD5:
9fdc21aac38f6471f1947c066bfdb74a
SHA1:
4a9a7d2ae74fe59f59cc9259f719753da6ee139e
Base64:
4qCm