Unicode Finder

"⅄" U+2144(TURNED SANS-SERIF CAPITAL Y)

U+2144
Όνομα Μπλοκ
Letterlike Symbols
Όνομα
TURNED SANS-SERIF CAPITAL Y

Programming

C
\u2144
JavaScript
\u2144
Java
\u2144
Json
\u2144
Python
\u2144
Perl
\x{2144}
PHP
\x{2144}
Ruby
\u{2144}
Rust
\u{2144}
Go
\u2144

Web

CSS
\002144
HtmlDecimal
⅄
HtmlHexadecimal
⅄
Url
%E2%85%84

Code

MD5
bc1e4e7dea5940c8e66e6b4517777b6f
Sha1
93b86a3fcd1f9f8da78613c55f5f19164114b367
Base64
4oWE

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u2144';
console.log(char);  // Output: ⅄

Java:

char c = '\u2144';
System.out.println(c);  // Output: ⅄

JSON:

{"text": "\u2144"}  // Value: ⅄

Python:

char = '\u2144'
print(char)  # Output: ⅄

Perl:

my $char = "\x{2144}";
print $char;  # Output: ⅄

PHP:

$char = "\x{2144}";
echo $char;  // Output: ⅄

Ruby:

char = "\u{2144}"
puts char  # Output: ⅄

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\002144";  /* Display: ⅄ */
}

HTML Decimal:

<p>HTML decimal: &#8516;</p>  <!-- Display: ⅄ -->

HTML Hexadecimal:

<p>HTML hex: &#x2144;</p>  <!-- Display: ⅄ -->

URL Encoding:

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

Encodings

MD5:

bc1e4e7dea5940c8e66e6b4517777b6f

SHA1:

93b86a3fcd1f9f8da78613c55f5f19164114b367

Base64:

4oWE