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