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