C:
char c = '\u2303';
printf("%c\n", c); // Output: ⌃
JavaScript:
const char = '\u2303';
console.log(char); // Output: ⌃
Java:
char c = '\u2303';
System.out.println(c); // Output: ⌃
JSON:
{"text": "\u2303"} // Value: ⌃
Python:
char = '\u2303'
print(char) # Output: ⌃
Perl:
my $char = "\x{2303}";
print $char; # Output: ⌃
PHP:
$char = "\x{2303}";
echo $char; // Output: ⌃
Ruby:
char = "\u{2303}"
puts char # Output: ⌃
Rust:
let c = '\u{2303}';
println!("{}", c); // Output: ⌃
Go:
char := '\u2303'
fmt.Printf("%c\n", char) // Output: ⌃
CSS:
/* CSS content property */
.element::before {
content: "\002303"; /* 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%8C%83
MD5:
df0ee1311069f5b3d1d74f2f6740313d
SHA1:
973f97d0a27e7050160757cf45d8099ce6bd06e9
Base64:
4oyD