C:
char c = '\u2815';
printf("%c\n", c); // Output: ⠕
JavaScript:
const char = '\u2815';
console.log(char); // Output: ⠕
Java:
char c = '\u2815';
System.out.println(c); // Output: ⠕
JSON:
{"text": "\u2815"} // Value: ⠕
Python:
char = '\u2815'
print(char) # Output: ⠕
Perl:
my $char = "\x{2815}";
print $char; # Output: ⠕
PHP:
$char = "\x{2815}";
echo $char; // Output: ⠕
Ruby:
char = "\u{2815}"
puts char # Output: ⠕
Rust:
let c = '\u{2815}';
println!("{}", c); // Output: ⠕
Go:
char := '\u2815'
fmt.Printf("%c\n", char) // Output: ⠕
CSS:
/* CSS content property */
.element::before {
content: "\002815"; /* 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%95
MD5:
3e70211bde599e6de56cff948627ac98
SHA1:
f9dcd71f00873a8ff7486bd2d5a15bb49949aa59
Base64:
4qCV