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