Unicode Finder

"Ʌ" U+0245(LATIN CAPITAL LETTER TURNED V)

Ʌ
U+0245
Nume Bloc
Latin Extended-B
Nume
LATIN CAPITAL LETTER TURNED V

Programming

C
\u0245
JavaScript
\u0245
Java
\u0245
Json
\u0245
Python
\u0245
Perl
\x{0245}
PHP
\x{0245}
Ruby
\u{0245}
Rust
\u{245}
Go
\u0245

Web

CSS
\000245
HtmlDecimal
Ʌ
HtmlHexadecimal
Ʌ
Url
%C9%85

Code

MD5
d49d68b0a3dd67622621cf344bf9326e
Sha1
c89adef314c09e1952ef51ffc1e638099cc93b8a
Base64
yYU=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0245';
console.log(char);  // Output: Ʌ

Java:

char c = '\u0245';
System.out.println(c);  // Output: Ʌ

JSON:

{"text": "\u0245"}  // Value: Ʌ

Python:

char = '\u0245'
print(char)  # Output: Ʌ

Perl:

my $char = "\x{0245}";
print $char;  # Output: Ʌ

PHP:

$char = "\x{0245}";
echo $char;  // Output: Ʌ

Ruby:

char = "\u{0245}"
puts char  # Output: Ʌ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000245";  /* Display: Ʌ */
}

HTML Decimal:

<p>HTML decimal: &#581;</p>  <!-- Display: Ʌ -->

HTML Hexadecimal:

<p>HTML hex: &#x0245;</p>  <!-- Display: Ʌ -->

URL Encoding:

// Ʌ URL encoding
https://unicodefinder.com/search.php?query=%C9%85

Encodings

MD5:

d49d68b0a3dd67622621cf344bf9326e

SHA1:

c89adef314c09e1952ef51ffc1e638099cc93b8a

Base64:

yYU=