C:
char c = '\u2410';
printf("%c\n", c); // Output: ␐
JavaScript:
const char = '\u2410';
console.log(char); // Output: ␐
Java:
char c = '\u2410';
System.out.println(c); // Output: ␐
JSON:
{"text": "\u2410"} // Value: ␐
Python:
char = '\u2410'
print(char) # Output: ␐
Perl:
my $char = "\x{2410}";
print $char; # Output: ␐
PHP:
$char = "\x{2410}";
echo $char; // Output: ␐
Ruby:
char = "\u{2410}"
puts char # Output: ␐
Rust:
let c = '\u{2410}';
println!("{}", c); // Output: ␐
Go:
char := '\u2410'
fmt.Printf("%c\n", char) // Output: ␐
CSS:
/* CSS content property */
.element::before {
content: "\002410"; /* 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%90%90
MD5:
59ade61268c54e0c6e7d49739e6b1c6c
SHA1:
aaae2e61b5c35a7d975c48fb9f1d1eef8f552ee6
Base64:
4pCQ