C:
char c = '\u2915';
printf("%c\n", c); // Output: ⤕
JavaScript:
const char = '\u2915';
console.log(char); // Output: ⤕
Java:
char c = '\u2915';
System.out.println(c); // Output: ⤕
JSON:
{"text": "\u2915"} // Value: ⤕
Python:
char = '\u2915'
print(char) # Output: ⤕
Perl:
my $char = "\x{2915}";
print $char; # Output: ⤕
PHP:
$char = "\x{2915}";
echo $char; // Output: ⤕
Ruby:
char = "\u{2915}"
puts char # Output: ⤕
Rust:
let c = '\u{2915}';
println!("{}", c); // Output: ⤕
Go:
char := '\u2915'
fmt.Printf("%c\n", char) // Output: ⤕
CSS:
/* CSS content property */
.element::before {
content: "\002915"; /* 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%95
MD5:
61cd73dd77963cc01e57465c9cd306a9
SHA1:
bc4f550a37ebf9d3d1032bde36cb8144c9b0a29b
Base64:
4qSV