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