C:
char c = '\u2308';
printf("%c\n", c); // Output: ⌈
JavaScript:
const char = '\u2308';
console.log(char); // Output: ⌈
Java:
char c = '\u2308';
System.out.println(c); // Output: ⌈
JSON:
{"text": "\u2308"} // Value: ⌈
Python:
char = '\u2308'
print(char) # Output: ⌈
Perl:
my $char = "\x{2308}";
print $char; # Output: ⌈
PHP:
$char = "\x{2308}";
echo $char; // Output: ⌈
Ruby:
char = "\u{2308}"
puts char # Output: ⌈
Rust:
let c = '\u{2308}';
println!("{}", c); // Output: ⌈
Go:
char := '\u2308'
fmt.Printf("%c\n", char) // Output: ⌈
CSS:
/* CSS content property */
.element::before {
content: "\002308"; /* 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%88
MD5:
3c4af827ce9275ee2fa341be432c6f9d
SHA1:
37f625307827eb483deabf5d7ca105f6c8513aa4
Base64:
4oyI