C:
char c = '\u2994';
printf("%c\n", c); // Output: ⦔
JavaScript:
const char = '\u2994';
console.log(char); // Output: ⦔
Java:
char c = '\u2994';
System.out.println(c); // Output: ⦔
JSON:
{"text": "\u2994"} // Value: ⦔
Python:
char = '\u2994'
print(char) # Output: ⦔
Perl:
my $char = "\x{2994}";
print $char; # Output: ⦔
PHP:
$char = "\x{2994}";
echo $char; // Output: ⦔
Ruby:
char = "\u{2994}"
puts char # Output: ⦔
Rust:
let c = '\u{2994}';
println!("{}", c); // Output: ⦔
Go:
char := '\u2994'
fmt.Printf("%c\n", char) // Output: ⦔
CSS:
/* CSS content property */
.element::before {
content: "\002994"; /* 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%94
MD5:
b19d89765758c6a107ff6593bb205a92
SHA1:
a543126f5e66e1f7e9466d738e66f6381e001e77
Base64:
4qaU