C:
char c = '\u2844';
printf("%c\n", c); // Output: ⡄
JavaScript:
const char = '\u2844';
console.log(char); // Output: ⡄
Java:
char c = '\u2844';
System.out.println(c); // Output: ⡄
JSON:
{"text": "\u2844"} // Value: ⡄
Python:
char = '\u2844'
print(char) # Output: ⡄
Perl:
my $char = "\x{2844}";
print $char; # Output: ⡄
PHP:
$char = "\x{2844}";
echo $char; // Output: ⡄
Ruby:
char = "\u{2844}"
puts char # Output: ⡄
Rust:
let c = '\u{2844}';
println!("{}", c); // Output: ⡄
Go:
char := '\u2844'
fmt.Printf("%c\n", char) // Output: ⡄
CSS:
/* CSS content property */
.element::before {
content: "\002844"; /* 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%84
MD5:
800021b75ed4c075baeb34f7058bd7cd
SHA1:
f6d7828fc469faabfbe78050e272867446992e71
Base64:
4qGE