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