C:
char c = '\u2805';
printf("%c\n", c); // Output: ⠅
JavaScript:
const char = '\u2805';
console.log(char); // Output: ⠅
Java:
char c = '\u2805';
System.out.println(c); // Output: ⠅
JSON:
{"text": "\u2805"} // Value: ⠅
Python:
char = '\u2805'
print(char) # Output: ⠅
Perl:
my $char = "\x{2805}";
print $char; # Output: ⠅
PHP:
$char = "\x{2805}";
echo $char; // Output: ⠅
Ruby:
char = "\u{2805}"
puts char # Output: ⠅
Rust:
let c = '\u{2805}';
println!("{}", c); // Output: ⠅
Go:
char := '\u2805'
fmt.Printf("%c\n", char) // Output: ⠅
CSS:
/* CSS content property */
.element::before {
content: "\002805"; /* 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%A0%85
MD5:
64e060ee40372d895a297c62767b44f9
SHA1:
9fee9b5cfff043a74289b413438de93762ac8cdc
Base64:
4qCF