Unicode Finder

"⌈" U+2308(LEFT CEILING)

U+2308
Bloknaam
Miscellaneous Technical
Naam
LEFT CEILING

Programming

C
\u2308
JavaScript
\u2308
Java
\u2308
Json
\u2308
Python
\u2308
Perl
\x{2308}
PHP
\x{2308}
Ruby
\u{2308}
Rust
\u{2308}
Go
\u2308

Web

CSS
\002308
HtmlDecimal
⌈
HtmlHexadecimal
⌈
Url
%E2%8C%88

Code

MD5
3c4af827ce9275ee2fa341be432c6f9d
Sha1
37f625307827eb483deabf5d7ca105f6c8513aa4
Base64
4oyI

Gebruiksvoorbeelden

Programming Languages

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: ⌈

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002308";  /* Display: ⌈ */
}

HTML Decimal:

<p>HTML decimal: &#8968;</p>  <!-- Display: ⌈ -->

HTML Hexadecimal:

<p>HTML hex: &#x2308;</p>  <!-- Display: ⌈ -->

URL Encoding:

// ⌈ URL encoding
https://unicodefinder.com/search.php?query=%E2%8C%88

Encodings

MD5:

3c4af827ce9275ee2fa341be432c6f9d

SHA1:

37f625307827eb483deabf5d7ca105f6c8513aa4

Base64:

4oyI