C:
char c = '\u2812';
printf("%c\n", c); // Output: ⠒
JavaScript:
const char = '\u2812';
console.log(char); // Output: ⠒
Java:
char c = '\u2812';
System.out.println(c); // Output: ⠒
JSON:
{"text": "\u2812"} // Value: ⠒
Python:
char = '\u2812'
print(char) # Output: ⠒
Perl:
my $char = "\x{2812}";
print $char; # Output: ⠒
PHP:
$char = "\x{2812}";
echo $char; // Output: ⠒
Ruby:
char = "\u{2812}"
puts char # Output: ⠒
Rust:
let c = '\u{2812}';
println!("{}", c); // Output: ⠒
Go:
char := '\u2812'
fmt.Printf("%c\n", char) // Output: ⠒
CSS:
/* CSS content property */
.element::before {
content: "\002812"; /* 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%92
MD5:
bc4fef80e6f6ad948abae838a195e262
SHA1:
a4bf7ec85ebb2f0597cf32e0880ddeed276b12e8
Base64:
4qCS