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