C:
char c = '\u2857';
printf("%c\n", c); // Output: ⡗
JavaScript:
const char = '\u2857';
console.log(char); // Output: ⡗
Java:
char c = '\u2857';
System.out.println(c); // Output: ⡗
JSON:
{"text": "\u2857"} // Value: ⡗
Python:
char = '\u2857'
print(char) # Output: ⡗
Perl:
my $char = "\x{2857}";
print $char; # Output: ⡗
PHP:
$char = "\x{2857}";
echo $char; // Output: ⡗
Ruby:
char = "\u{2857}"
puts char # Output: ⡗
Rust:
let c = '\u{2857}';
println!("{}", c); // Output: ⡗
Go:
char := '\u2857'
fmt.Printf("%c\n", char) // Output: ⡗
CSS:
/* CSS content property */
.element::before {
content: "\002857"; /* 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%97
MD5:
4011005228a2d0ab0c6b72b91689aad7
SHA1:
f7f6d9667da0777e4951204b903ddc8d5c5eaf0e
Base64:
4qGX