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