C:
char c = '\u2900';
printf("%c\n", c); // Output: ⤀
JavaScript:
const char = '\u2900';
console.log(char); // Output: ⤀
Java:
char c = '\u2900';
System.out.println(c); // Output: ⤀
JSON:
{"text": "\u2900"} // Value: ⤀
Python:
char = '\u2900'
print(char) # Output: ⤀
Perl:
my $char = "\x{2900}";
print $char; # Output: ⤀
PHP:
$char = "\x{2900}";
echo $char; // Output: ⤀
Ruby:
char = "\u{2900}"
puts char # Output: ⤀
Rust:
let c = '\u{2900}';
println!("{}", c); // Output: ⤀
Go:
char := '\u2900'
fmt.Printf("%c\n", char) // Output: ⤀
CSS:
/* CSS content property */
.element::before {
content: "\002900"; /* 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%80
MD5:
ca9dad3e42bfe416b38f2eb4c8252aaa
SHA1:
abb074ed69614907d1d794dd5c68614ee91bde7b
Base64:
4qSA