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