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