Unicode Finder

"Ʊ" U+01B1(LATIN CAPITAL LETTER UPSILON)

Ʊ
U+01B1
Tên Khối
Latin Extended-B
Tên
LATIN CAPITAL LETTER UPSILON

Programming

C
\u01B1
JavaScript
\u01B1
Java
\u01B1
Json
\u01B1
Python
\u01B1
Perl
\x{01B1}
PHP
\x{01B1}
Ruby
\u{01B1}
Rust
\u{1B1}
Go
\u01B1

Web

CSS
\0001B1
HtmlDecimal
Ʊ
HtmlHexadecimal
Ʊ
Url
%C6%B1

Code

MD5
097ebfe60da1d50f4291c74f4b2560e6
Sha1
91ba91feb2592677a581ee73caa34f015d2db5a0
Base64
xrE=

Ví dụ Sử dụng

Programming Languages

C:

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

JavaScript:

const char = '\u01B1';
console.log(char);  // Output: Ʊ

Java:

char c = '\u01B1';
System.out.println(c);  // Output: Ʊ

JSON:

{"text": "\u01B1"}  // Value: Ʊ

Python:

char = '\u01B1'
print(char)  # Output: Ʊ

Perl:

my $char = "\x{01B1}";
print $char;  # Output: Ʊ

PHP:

$char = "\x{01B1}";
echo $char;  // Output: Ʊ

Ruby:

char = "\u{01B1}"
puts char  # Output: Ʊ

Rust:

let c = '\u{1B1}';
println!("{}", c);  // Output: Ʊ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0001B1";  /* Display: Ʊ */
}

HTML Decimal:

<p>HTML decimal: &#433;</p>  <!-- Display: Ʊ -->

HTML Hexadecimal:

<p>HTML hex: &#x01B1;</p>  <!-- Display: Ʊ -->

URL Encoding:

// Ʊ URL encoding
https://unicodefinder.com/search.php?query=%C6%B1

Encodings

MD5:

097ebfe60da1d50f4291c74f4b2560e6

SHA1:

91ba91feb2592677a581ee73caa34f015d2db5a0

Base64:

xrE=