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