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