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