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