C:
char c = '\u2823';
printf("%c\n", c); // Output: ⠣
JavaScript:
const char = '\u2823';
console.log(char); // Output: ⠣
Java:
char c = '\u2823';
System.out.println(c); // Output: ⠣
JSON:
{"text": "\u2823"} // Value: ⠣
Python:
char = '\u2823'
print(char) # Output: ⠣
Perl:
my $char = "\x{2823}";
print $char; # Output: ⠣
PHP:
$char = "\x{2823}";
echo $char; // Output: ⠣
Ruby:
char = "\u{2823}"
puts char # Output: ⠣
Rust:
let c = '\u{2823}';
println!("{}", c); // Output: ⠣
Go:
char := '\u2823'
fmt.Printf("%c\n", char) // Output: ⠣
CSS:
/* CSS content property */
.element::before {
content: "\002823"; /* 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%A3
MD5:
53181d2ddfd07a271c3a2f116500eaa5
SHA1:
059fffacd4dae6c38d01bd03046297c3fd913c77
Base64:
4qCj