C:
char c = '\u2930';
printf("%c\n", c); // Output: ⤰
JavaScript:
const char = '\u2930';
console.log(char); // Output: ⤰
Java:
char c = '\u2930';
System.out.println(c); // Output: ⤰
JSON:
{"text": "\u2930"} // Value: ⤰
Python:
char = '\u2930'
print(char) # Output: ⤰
Perl:
my $char = "\x{2930}";
print $char; # Output: ⤰
PHP:
$char = "\x{2930}";
echo $char; // Output: ⤰
Ruby:
char = "\u{2930}"
puts char # Output: ⤰
Rust:
let c = '\u{2930}';
println!("{}", c); // Output: ⤰
Go:
char := '\u2930'
fmt.Printf("%c\n", char) // Output: ⤰
CSS:
/* CSS content property */
.element::before {
content: "\002930"; /* 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%B0
MD5:
964a5350322c994ef4d9890c1b655aa6
SHA1:
28727ed423c9c9ec376950e3e116ba32a7649f82
Base64:
4qSw