C:
char c = '\u2395';
printf("%c\n", c); // Output: ⎕
JavaScript:
const char = '\u2395';
console.log(char); // Output: ⎕
Java:
char c = '\u2395';
System.out.println(c); // Output: ⎕
JSON:
{"text": "\u2395"} // Value: ⎕
Python:
char = '\u2395'
print(char) # Output: ⎕
Perl:
my $char = "\x{2395}";
print $char; # Output: ⎕
PHP:
$char = "\x{2395}";
echo $char; // Output: ⎕
Ruby:
char = "\u{2395}"
puts char # Output: ⎕
Rust:
let c = '\u{2395}';
println!("{}", c); // Output: ⎕
Go:
char := '\u2395'
fmt.Printf("%c\n", char) // Output: ⎕
CSS:
/* CSS content property */
.element::before {
content: "\002395"; /* 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%8E%95
MD5:
435a201ac4fec734dda0731d9f5d3005
SHA1:
636fa143f27014752a4733eba49745d6e2dd0a57
Base64:
4o6V