C:
char c = '\u2990';
printf("%c\n", c); // Output: ⦐
JavaScript:
const char = '\u2990';
console.log(char); // Output: ⦐
Java:
char c = '\u2990';
System.out.println(c); // Output: ⦐
JSON:
{"text": "\u2990"} // Value: ⦐
Python:
char = '\u2990'
print(char) # Output: ⦐
Perl:
my $char = "\x{2990}";
print $char; # Output: ⦐
PHP:
$char = "\x{2990}";
echo $char; // Output: ⦐
Ruby:
char = "\u{2990}"
puts char # Output: ⦐
Rust:
let c = '\u{2990}';
println!("{}", c); // Output: ⦐
Go:
char := '\u2990'
fmt.Printf("%c\n", char) // Output: ⦐
CSS:
/* CSS content property */
.element::before {
content: "\002990"; /* 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%A6%90
MD5:
a56a508f9e0c329aa5d641e4b5839d38
SHA1:
4923fb9f987fb5cdef8e651101684c2dbb5beaa2
Base64:
4qaQ