C:
char c = '\u21CB';
printf("%c\n", c); // Output: ⇋
JavaScript:
const char = '\u21CB';
console.log(char); // Output: ⇋
Java:
char c = '\u21CB';
System.out.println(c); // Output: ⇋
JSON:
{"text": "\u21CB"} // Value: ⇋
Python:
char = '\u21CB'
print(char) # Output: ⇋
Perl:
my $char = "\x{21CB}";
print $char; # Output: ⇋
PHP:
$char = "\x{21CB}";
echo $char; // Output: ⇋
Ruby:
char = "\u{21CB}"
puts char # Output: ⇋
Rust:
let c = '\u{21CB}';
println!("{}", c); // Output: ⇋
Go:
char := '\u21CB'
fmt.Printf("%c\n", char) // Output: ⇋
CSS:
/* CSS content property */
.element::before {
content: "\0021CB"; /* 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%87%8B
MD5:
195182edd63ea86354a311c0d8851a68
SHA1:
1710fb4e0c46155147e80d7ab55d5bc29ef320e3
Base64:
4oeL