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