Unicode Finder

"ↄ" U+2184(LATIN SMALL LETTER REVERSED C)

U+2184
Tên Khối
Number Forms
Tên
LATIN SMALL LETTER REVERSED C

Programming

C
\u2184
JavaScript
\u2184
Java
\u2184
Json
\u2184
Python
\u2184
Perl
\x{2184}
PHP
\x{2184}
Ruby
\u{2184}
Rust
\u{2184}
Go
\u2184

Web

CSS
\002184
HtmlDecimal
ↄ
HtmlHexadecimal
ↄ
Url
%E2%86%84

Code

MD5
dbf8bb621ee1d9624c65cdb75295a888
Sha1
7a4fe33e91597dc71aefc247467ddcab3acc8aac
Base64
4oaE

Ví dụ Sử dụng

Programming Languages

C:

char c = '\u2184';
printf("%c\n", c);  // Output: ↄ

JavaScript:

const char = '\u2184';
console.log(char);  // Output: ↄ

Java:

char c = '\u2184';
System.out.println(c);  // Output: ↄ

JSON:

{"text": "\u2184"}  // Value: ↄ

Python:

char = '\u2184'
print(char)  # Output: ↄ

Perl:

my $char = "\x{2184}";
print $char;  # Output: ↄ

PHP:

$char = "\x{2184}";
echo $char;  // Output: ↄ

Ruby:

char = "\u{2184}"
puts char  # Output: ↄ

Rust:

let c = '\u{2184}';
println!("{}", c);  // Output: ↄ

Go:

char := '\u2184'
fmt.Printf("%c\n", char)  // Output: ↄ

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002184";  /* Display: ↄ */
}

HTML Decimal:

<p>HTML decimal: &#8580;</p>  <!-- Display: ↄ -->

HTML Hexadecimal:

<p>HTML hex: &#x2184;</p>  <!-- Display: ↄ -->

URL Encoding:

// ↄ URL encoding
https://unicodefinder.com/search.php?query=%E2%86%84

Encodings

MD5:

dbf8bb621ee1d9624c65cdb75295a888

SHA1:

7a4fe33e91597dc71aefc247467ddcab3acc8aac

Base64:

4oaE