C:
char c = '\u2B07';
printf("%c\n", c); // Output: ⬇
JavaScript:
const char = '\u2B07';
console.log(char); // Output: ⬇
Java:
char c = '\u2B07';
System.out.println(c); // Output: ⬇
JSON:
{"text": "\u2B07"} // Value: ⬇
Python:
char = '\u2B07'
print(char) # Output: ⬇
Perl:
my $char = "\x{2B07}";
print $char; # Output: ⬇
PHP:
$char = "\x{2B07}";
echo $char; // Output: ⬇
Ruby:
char = "\u{2B07}"
puts char # Output: ⬇
Rust:
let c = '\u{2B07}';
println!("{}", c); // Output: ⬇
Go:
char := '\u2B07'
fmt.Printf("%c\n", char) // Output: ⬇
CSS:
/* CSS content property */
.element::before {
content: "\002B07"; /* 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%AC%87
MD5:
b891069343ac0e93db1347e817e1e0e3
SHA1:
d947974a094ff8807c3d3e9259a23d442794fae5
Base64:
4qyH