C:
char c = '\u2391';
printf("%c\n", c); // Output: ⎑
JavaScript:
const char = '\u2391';
console.log(char); // Output: ⎑
Java:
char c = '\u2391';
System.out.println(c); // Output: ⎑
JSON:
{"text": "\u2391"} // Value: ⎑
Python:
char = '\u2391'
print(char) # Output: ⎑
Perl:
my $char = "\x{2391}";
print $char; # Output: ⎑
PHP:
$char = "\x{2391}";
echo $char; // Output: ⎑
Ruby:
char = "\u{2391}"
puts char # Output: ⎑
Rust:
let c = '\u{2391}';
println!("{}", c); // Output: ⎑
Go:
char := '\u2391'
fmt.Printf("%c\n", char) // Output: ⎑
CSS:
/* CSS content property */
.element::before {
content: "\002391"; /* 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%8E%91
MD5:
a6f00655647e53e1bdfe20b147f915dc
SHA1:
97a481cd7eaeebaa47f03048d6880e1b35d7e961
Base64:
4o6R