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