C:
char c = '\u2893';
printf("%c\n", c); // Output: ⢓
JavaScript:
const char = '\u2893';
console.log(char); // Output: ⢓
Java:
char c = '\u2893';
System.out.println(c); // Output: ⢓
JSON:
{"text": "\u2893"} // Value: ⢓
Python:
char = '\u2893'
print(char) # Output: ⢓
Perl:
my $char = "\x{2893}";
print $char; # Output: ⢓
PHP:
$char = "\x{2893}";
echo $char; // Output: ⢓
Ruby:
char = "\u{2893}"
puts char # Output: ⢓
Rust:
let c = '\u{2893}';
println!("{}", c); // Output: ⢓
Go:
char := '\u2893'
fmt.Printf("%c\n", char) // Output: ⢓
CSS:
/* CSS content property */
.element::before {
content: "\002893"; /* 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%A2%93
MD5:
77333c08630113996a5395ae0857fee7
SHA1:
6f55c455f32c1f18b0cbdeac55250fb09150c018
Base64:
4qKT