C:
char c = '\u2920';
printf("%c\n", c); // Output: ⤠
JavaScript:
const char = '\u2920';
console.log(char); // Output: ⤠
Java:
char c = '\u2920';
System.out.println(c); // Output: ⤠
JSON:
{"text": "\u2920"} // Value: ⤠
Python:
char = '\u2920'
print(char) # Output: ⤠
Perl:
my $char = "\x{2920}";
print $char; # Output: ⤠
PHP:
$char = "\x{2920}";
echo $char; // Output: ⤠
Ruby:
char = "\u{2920}"
puts char # Output: ⤠
Rust:
let c = '\u{2920}';
println!("{}", c); // Output: ⤠
Go:
char := '\u2920'
fmt.Printf("%c\n", char) // Output: ⤠
CSS:
/* CSS content property */
.element::before {
content: "\002920"; /* 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%A4%A0
MD5:
4167867ab6fcd46a16a49506053ed446
SHA1:
b2c612a8e63ea9e883a2e21683a1fd6af055741c
Base64:
4qSg