C:
char c = '\u2816';
printf("%c\n", c); // Output: ⠖
JavaScript:
const char = '\u2816';
console.log(char); // Output: ⠖
Java:
char c = '\u2816';
System.out.println(c); // Output: ⠖
JSON:
{"text": "\u2816"} // Value: ⠖
Python:
char = '\u2816'
print(char) # Output: ⠖
Perl:
my $char = "\x{2816}";
print $char; # Output: ⠖
PHP:
$char = "\x{2816}";
echo $char; // Output: ⠖
Ruby:
char = "\u{2816}"
puts char # Output: ⠖
Rust:
let c = '\u{2816}';
println!("{}", c); // Output: ⠖
Go:
char := '\u2816'
fmt.Printf("%c\n", char) // Output: ⠖
CSS:
/* CSS content property */
.element::before {
content: "\002816"; /* 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%96
MD5:
810a62a7a5e3634f59e34c5980c0344e
SHA1:
bfe08b430e6bbd7759d51c3963dbcb548b1b95e7
Base64:
4qCW