C:
char c = '\u23EC';
printf("%c\n", c); // Output: ⏬
JavaScript:
const char = '\u23EC';
console.log(char); // Output: ⏬
Java:
char c = '\u23EC';
System.out.println(c); // Output: ⏬
JSON:
{"text": "\u23EC"} // Value: ⏬
Python:
char = '\u23EC'
print(char) # Output: ⏬
Perl:
my $char = "\x{23EC}";
print $char; # Output: ⏬
PHP:
$char = "\x{23EC}";
echo $char; // Output: ⏬
Ruby:
char = "\u{23EC}"
puts char # Output: ⏬
Rust:
let c = '\u{23EC}';
println!("{}", c); // Output: ⏬
Go:
char := '\u23EC'
fmt.Printf("%c\n", char) // Output: ⏬
CSS:
/* CSS content property */
.element::before {
content: "\0023EC"; /* 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%8F%AC
MD5:
334bf85bab2054c54f7ec7c47b5a4fc8
SHA1:
b29b3bf4e23853e81c3d11bee56205dfba290500
Base64:
4o+s