C:
char c = '\u2813';
printf("%c\n", c); // Output: ⠓
JavaScript:
const char = '\u2813';
console.log(char); // Output: ⠓
Java:
char c = '\u2813';
System.out.println(c); // Output: ⠓
JSON:
{"text": "\u2813"} // Value: ⠓
Python:
char = '\u2813'
print(char) # Output: ⠓
Perl:
my $char = "\x{2813}";
print $char; # Output: ⠓
PHP:
$char = "\x{2813}";
echo $char; // Output: ⠓
Ruby:
char = "\u{2813}"
puts char # Output: ⠓
Rust:
let c = '\u{2813}';
println!("{}", c); // Output: ⠓
Go:
char := '\u2813'
fmt.Printf("%c\n", char) // Output: ⠓
CSS:
/* CSS content property */
.element::before {
content: "\002813"; /* 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%93
MD5:
37ae405e20db764749fd063b3386cbd8
SHA1:
816a5c7456ff6b4690fd77f0acaf0e3f10a4bfa4
Base64:
4qCT