C:
char c = '\u2309';
printf("%c\n", c); // Output: ⌉
JavaScript:
const char = '\u2309';
console.log(char); // Output: ⌉
Java:
char c = '\u2309';
System.out.println(c); // Output: ⌉
JSON:
{"text": "\u2309"} // Value: ⌉
Python:
char = '\u2309'
print(char) # Output: ⌉
Perl:
my $char = "\x{2309}";
print $char; # Output: ⌉
PHP:
$char = "\x{2309}";
echo $char; // Output: ⌉
Ruby:
char = "\u{2309}"
puts char # Output: ⌉
Rust:
let c = '\u{2309}';
println!("{}", c); // Output: ⌉
Go:
char := '\u2309'
fmt.Printf("%c\n", char) // Output: ⌉
CSS:
/* CSS content property */
.element::before {
content: "\002309"; /* 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%89
MD5:
0de7063cdaab95a05d620c92576c63cb
SHA1:
6a22d82feec154be2af32c4560dfd8d07faba5a7
Base64:
4oyJ