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