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