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