C:
char c = '\u2873';
printf("%c\n", c); // Output: ⡳
JavaScript:
const char = '\u2873';
console.log(char); // Output: ⡳
Java:
char c = '\u2873';
System.out.println(c); // Output: ⡳
JSON:
{"text": "\u2873"} // Value: ⡳
Python:
char = '\u2873'
print(char) # Output: ⡳
Perl:
my $char = "\x{2873}";
print $char; # Output: ⡳
PHP:
$char = "\x{2873}";
echo $char; // Output: ⡳
Ruby:
char = "\u{2873}"
puts char # Output: ⡳
Rust:
let c = '\u{2873}';
println!("{}", c); // Output: ⡳
Go:
char := '\u2873'
fmt.Printf("%c\n", char) // Output: ⡳
CSS:
/* CSS content property */
.element::before {
content: "\002873"; /* 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%A1%B3
MD5:
0b8e7511f5277038d00e4065df803cd9
SHA1:
445ac6f11946a69b3bd547016a7e6ef3b08d22ca
Base64:
4qGz