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