C:
char c = '\u2890';
printf("%c\n", c); // Output: ⢐
JavaScript:
const char = '\u2890';
console.log(char); // Output: ⢐
Java:
char c = '\u2890';
System.out.println(c); // Output: ⢐
JSON:
{"text": "\u2890"} // Value: ⢐
Python:
char = '\u2890'
print(char) # Output: ⢐
Perl:
my $char = "\x{2890}";
print $char; # Output: ⢐
PHP:
$char = "\x{2890}";
echo $char; // Output: ⢐
Ruby:
char = "\u{2890}"
puts char # Output: ⢐
Rust:
let c = '\u{2890}';
println!("{}", c); // Output: ⢐
Go:
char := '\u2890'
fmt.Printf("%c\n", char) // Output: ⢐
CSS:
/* CSS content property */
.element::before {
content: "\002890"; /* 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%90
MD5:
8f1289e1be8ae7986d8e850e2377b873
SHA1:
28c3f6e4b61896e5c5d109bbcffd3642620e7a20
Base64:
4qKQ