C:
char c = '\u2315';
printf("%c\n", c); // Output: ⌕
JavaScript:
const char = '\u2315';
console.log(char); // Output: ⌕
Java:
char c = '\u2315';
System.out.println(c); // Output: ⌕
JSON:
{"text": "\u2315"} // Value: ⌕
Python:
char = '\u2315'
print(char) # Output: ⌕
Perl:
my $char = "\x{2315}";
print $char; # Output: ⌕
PHP:
$char = "\x{2315}";
echo $char; // Output: ⌕
Ruby:
char = "\u{2315}"
puts char # Output: ⌕
Rust:
let c = '\u{2315}';
println!("{}", c); // Output: ⌕
Go:
char := '\u2315'
fmt.Printf("%c\n", char) // Output: ⌕
CSS:
/* CSS content property */
.element::before {
content: "\002315"; /* 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%95
MD5:
c7b71b3a938cc48b02b39b9f3656f7da
SHA1:
1b0a1f59a5d93e73832bbc4bbb5477a59512593d
Base64:
4oyV