C:
char c = '\u2825';
printf("%c\n", c); // Output: ⠥
JavaScript:
const char = '\u2825';
console.log(char); // Output: ⠥
Java:
char c = '\u2825';
System.out.println(c); // Output: ⠥
JSON:
{"text": "\u2825"} // Value: ⠥
Python:
char = '\u2825'
print(char) # Output: ⠥
Perl:
my $char = "\x{2825}";
print $char; # Output: ⠥
PHP:
$char = "\x{2825}";
echo $char; // Output: ⠥
Ruby:
char = "\u{2825}"
puts char # Output: ⠥
Rust:
let c = '\u{2825}';
println!("{}", c); // Output: ⠥
Go:
char := '\u2825'
fmt.Printf("%c\n", char) // Output: ⠥
CSS:
/* CSS content property */
.element::before {
content: "\002825"; /* 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%A5
MD5:
914d6d09ad1b2238d99bbf2cd52c4421
SHA1:
0e895ee79fff9a0d5d67877a44bf72d6bf261735
Base64:
4qCl