C:
char c = '\u2926';
printf("%c\n", c); // Output: ⤦
JavaScript:
const char = '\u2926';
console.log(char); // Output: ⤦
Java:
char c = '\u2926';
System.out.println(c); // Output: ⤦
JSON:
{"text": "\u2926"} // Value: ⤦
Python:
char = '\u2926'
print(char) # Output: ⤦
Perl:
my $char = "\x{2926}";
print $char; # Output: ⤦
PHP:
$char = "\x{2926}";
echo $char; // Output: ⤦
Ruby:
char = "\u{2926}"
puts char # Output: ⤦
Rust:
let c = '\u{2926}';
println!("{}", c); // Output: ⤦
Go:
char := '\u2926'
fmt.Printf("%c\n", char) // Output: ⤦
CSS:
/* CSS content property */
.element::before {
content: "\002926"; /* 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%A4%A6
MD5:
e671dc9b2b3e0bd120a6758b47cefde7
SHA1:
18e82362650f2acb984499c91d24ecb5ddcf063b
Base64:
4qSm