C:
char c = '\u2991';
printf("%c\n", c); // Output: ⦑
JavaScript:
const char = '\u2991';
console.log(char); // Output: ⦑
Java:
char c = '\u2991';
System.out.println(c); // Output: ⦑
JSON:
{"text": "\u2991"} // Value: ⦑
Python:
char = '\u2991'
print(char) # Output: ⦑
Perl:
my $char = "\x{2991}";
print $char; # Output: ⦑
PHP:
$char = "\x{2991}";
echo $char; // Output: ⦑
Ruby:
char = "\u{2991}"
puts char # Output: ⦑
Rust:
let c = '\u{2991}';
println!("{}", c); // Output: ⦑
Go:
char := '\u2991'
fmt.Printf("%c\n", char) // Output: ⦑
CSS:
/* CSS content property */
.element::before {
content: "\002991"; /* 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%91
MD5:
551be404bdbe1637a5d05d3e07d5021c
SHA1:
b97c4014a0722d2caa3bfc93acf267cd28b702fa
Base64:
4qaR