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