C:
char c = '\u2B9F';
printf("%c\n", c); // Output: ⮟
JavaScript:
const char = '\u2B9F';
console.log(char); // Output: ⮟
Java:
char c = '\u2B9F';
System.out.println(c); // Output: ⮟
JSON:
{"text": "\u2B9F"} // Value: ⮟
Python:
char = '\u2B9F'
print(char) # Output: ⮟
Perl:
my $char = "\x{2B9F}";
print $char; # Output: ⮟
PHP:
$char = "\x{2B9F}";
echo $char; // Output: ⮟
Ruby:
char = "\u{2B9F}"
puts char # Output: ⮟
Rust:
let c = '\u{2B9F}';
println!("{}", c); // Output: ⮟
Go:
char := '\u2B9F'
fmt.Printf("%c\n", char) // Output: ⮟
CSS:
/* CSS content property */
.element::before {
content: "\002B9F"; /* 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%AE%9F
MD5:
99b95fbee0e5c2dceaf05330091f9984
SHA1:
6d09b01dc63e6bdeedaaf6f76048e05e15702e21
Base64:
4q6f