C:
char c = '\u2845';
printf("%c\n", c); // Output: ⡅
JavaScript:
const char = '\u2845';
console.log(char); // Output: ⡅
Java:
char c = '\u2845';
System.out.println(c); // Output: ⡅
JSON:
{"text": "\u2845"} // Value: ⡅
Python:
char = '\u2845'
print(char) # Output: ⡅
Perl:
my $char = "\x{2845}";
print $char; # Output: ⡅
PHP:
$char = "\x{2845}";
echo $char; // Output: ⡅
Ruby:
char = "\u{2845}"
puts char # Output: ⡅
Rust:
let c = '\u{2845}';
println!("{}", c); // Output: ⡅
Go:
char := '\u2845'
fmt.Printf("%c\n", char) // Output: ⡅
CSS:
/* CSS content property */
.element::before {
content: "\002845"; /* 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%85
MD5:
41eece542ec4f834b8bfb97414cb066c
SHA1:
c5139a5cddd8fa50033723b0880979480af68e78
Base64:
4qGF