C:
char c = '\u2311';
printf("%c\n", c); // Output: ⌑
JavaScript:
const char = '\u2311';
console.log(char); // Output: ⌑
Java:
char c = '\u2311';
System.out.println(c); // Output: ⌑
JSON:
{"text": "\u2311"} // Value: ⌑
Python:
char = '\u2311'
print(char) # Output: ⌑
Perl:
my $char = "\x{2311}";
print $char; # Output: ⌑
PHP:
$char = "\x{2311}";
echo $char; // Output: ⌑
Ruby:
char = "\u{2311}"
puts char # Output: ⌑
Rust:
let c = '\u{2311}';
println!("{}", c); // Output: ⌑
Go:
char := '\u2311'
fmt.Printf("%c\n", char) // Output: ⌑
CSS:
/* CSS content property */
.element::before {
content: "\002311"; /* 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%91
MD5:
2d567cbbbc4b89060eb96434cb16e7be
SHA1:
793737aaed818287e461b14fb2cc4dbf6c05c036
Base64:
4oyR