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