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