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