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