C:
char c = '\u2933';
printf("%c\n", c); // Output: ⤳
JavaScript:
const char = '\u2933';
console.log(char); // Output: ⤳
Java:
char c = '\u2933';
System.out.println(c); // Output: ⤳
JSON:
{"text": "\u2933"} // Value: ⤳
Python:
char = '\u2933'
print(char) # Output: ⤳
Perl:
my $char = "\x{2933}";
print $char; # Output: ⤳
PHP:
$char = "\x{2933}";
echo $char; // Output: ⤳
Ruby:
char = "\u{2933}"
puts char # Output: ⤳
Rust:
let c = '\u{2933}';
println!("{}", c); // Output: ⤳
Go:
char := '\u2933'
fmt.Printf("%c\n", char) // Output: ⤳
CSS:
/* CSS content property */
.element::before {
content: "\002933"; /* 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%A4%B3
MD5:
046bc41aad7055637c40e5f36180e0af
SHA1:
5924d60fd680812827739729a519510df1cf126a
Base64:
4qSz