C:
char c = '\u2852';
printf("%c\n", c); // Output: ⡒
JavaScript:
const char = '\u2852';
console.log(char); // Output: ⡒
Java:
char c = '\u2852';
System.out.println(c); // Output: ⡒
JSON:
{"text": "\u2852"} // Value: ⡒
Python:
char = '\u2852'
print(char) # Output: ⡒
Perl:
my $char = "\x{2852}";
print $char; # Output: ⡒
PHP:
$char = "\x{2852}";
echo $char; // Output: ⡒
Ruby:
char = "\u{2852}"
puts char # Output: ⡒
Rust:
let c = '\u{2852}';
println!("{}", c); // Output: ⡒
Go:
char := '\u2852'
fmt.Printf("%c\n", char) // Output: ⡒
CSS:
/* CSS content property */
.element::before {
content: "\002852"; /* 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%A1%92
MD5:
2fe40e252fbf4f6c101f9ff8c95d70e8
SHA1:
3dd9389ae3d2ab5da4e163ce934de7a1de9058f8
Base64:
4qGS