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