C:
char c = '\u2901';
printf("%c\n", c); // Output: ⤁
JavaScript:
const char = '\u2901';
console.log(char); // Output: ⤁
Java:
char c = '\u2901';
System.out.println(c); // Output: ⤁
JSON:
{"text": "\u2901"} // Value: ⤁
Python:
char = '\u2901'
print(char) # Output: ⤁
Perl:
my $char = "\x{2901}";
print $char; # Output: ⤁
PHP:
$char = "\x{2901}";
echo $char; // Output: ⤁
Ruby:
char = "\u{2901}"
puts char # Output: ⤁
Rust:
let c = '\u{2901}';
println!("{}", c); // Output: ⤁
Go:
char := '\u2901'
fmt.Printf("%c\n", char) // Output: ⤁
CSS:
/* CSS content property */
.element::before {
content: "\002901"; /* 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%81
MD5:
0badc5247c2631ec89f70f62e9ac12bb
SHA1:
1b3112c6eefab071e80dfc6509ea72aaad200978
Base64:
4qSB