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