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