C:
char c = '\u2843';
printf("%c\n", c); // Output: ⡃
JavaScript:
const char = '\u2843';
console.log(char); // Output: ⡃
Java:
char c = '\u2843';
System.out.println(c); // Output: ⡃
JSON:
{"text": "\u2843"} // Value: ⡃
Python:
char = '\u2843'
print(char) # Output: ⡃
Perl:
my $char = "\x{2843}";
print $char; # Output: ⡃
PHP:
$char = "\x{2843}";
echo $char; // Output: ⡃
Ruby:
char = "\u{2843}"
puts char # Output: ⡃
Rust:
let c = '\u{2843}';
println!("{}", c); // Output: ⡃
Go:
char := '\u2843'
fmt.Printf("%c\n", char) // Output: ⡃
CSS:
/* CSS content property */
.element::before {
content: "\002843"; /* 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%83
MD5:
059ab2b4e14e620b20028c0e6f42aa39
SHA1:
df595eab2f83d3be555cadd09af0fd5550fcf64f
Base64:
4qGD