C:
char c = '\u2824';
printf("%c\n", c); // Output: ⠤
JavaScript:
const char = '\u2824';
console.log(char); // Output: ⠤
Java:
char c = '\u2824';
System.out.println(c); // Output: ⠤
JSON:
{"text": "\u2824"} // Value: ⠤
Python:
char = '\u2824'
print(char) # Output: ⠤
Perl:
my $char = "\x{2824}";
print $char; # Output: ⠤
PHP:
$char = "\x{2824}";
echo $char; // Output: ⠤
Ruby:
char = "\u{2824}"
puts char # Output: ⠤
Rust:
let c = '\u{2824}';
println!("{}", c); // Output: ⠤
Go:
char := '\u2824'
fmt.Printf("%c\n", char) // Output: ⠤
CSS:
/* CSS content property */
.element::before {
content: "\002824"; /* 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%A4
MD5:
237808a9690e0a19a334dd18ebf22a80
SHA1:
1d6ce95468cf87652d4198eb0dc6ebbf072459ed
Base64:
4qCk