Unicode Finder

"⌉" U+2309(RIGHT CEILING)

U+2309
Nazwa Bloku
Miscellaneous Technical
Nazwa
RIGHT CEILING

Programming

C
\u2309
JavaScript
\u2309
Java
\u2309
Json
\u2309
Python
\u2309
Perl
\x{2309}
PHP
\x{2309}
Ruby
\u{2309}
Rust
\u{2309}
Go
\u2309

Web

CSS
\002309
HtmlDecimal
⌉
HtmlHexadecimal
⌉
Url
%E2%8C%89

Code

MD5
0de7063cdaab95a05d620c92576c63cb
Sha1
6a22d82feec154be2af32c4560dfd8d07faba5a7
Base64
4oyJ

Przykłady Użycia

Programming Languages

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002309";  /* Display: ⌉ */
}

HTML Decimal:

<p>HTML decimal: &#8969;</p>  <!-- Display: ⌉ -->

HTML Hexadecimal:

<p>HTML hex: &#x2309;</p>  <!-- Display: ⌉ -->

URL Encoding:

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

Encodings

MD5:

0de7063cdaab95a05d620c92576c63cb

SHA1:

6a22d82feec154be2af32c4560dfd8d07faba5a7

Base64:

4oyJ