C:
char c = '\u2907';
printf("%c\n", c); // Output: ⤇
JavaScript:
const char = '\u2907';
console.log(char); // Output: ⤇
Java:
char c = '\u2907';
System.out.println(c); // Output: ⤇
JSON:
{"text": "\u2907"} // Value: ⤇
Python:
char = '\u2907'
print(char) # Output: ⤇
Perl:
my $char = "\x{2907}";
print $char; # Output: ⤇
PHP:
$char = "\x{2907}";
echo $char; // Output: ⤇
Ruby:
char = "\u{2907}"
puts char # Output: ⤇
Rust:
let c = '\u{2907}';
println!("{}", c); // Output: ⤇
Go:
char := '\u2907'
fmt.Printf("%c\n", char) // Output: ⤇
CSS:
/* CSS content property */
.element::before {
content: "\002907"; /* 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%87
MD5:
9f6af021becb9316c49338dc888abe22
SHA1:
118fd02d3efb1c1bd6b3f9176c66dccb381d07fc
Base64:
4qSH