Unicode Finder

"ɱ" U+0271(LATIN SMALL LETTER M WITH HOOK)

ɱ
U+0271
Nama Blok
IPA Extensions
Nama
LATIN SMALL LETTER M WITH HOOK

Programming

C
\u0271
JavaScript
\u0271
Java
\u0271
Json
\u0271
Python
\u0271
Perl
\x{0271}
PHP
\x{0271}
Ruby
\u{0271}
Rust
\u{271}
Go
\u0271

Web

CSS
\000271
HtmlDecimal
ɱ
HtmlHexadecimal
ɱ
Url
%C9%B1

Code

MD5
75879d5782aa3fb76efc6046531c8882
Sha1
4328a458bc7493df9f42d3ac2e35dbafbbb0d364
Base64
ybE=

Contoh Penggunaan

Programming Languages

C:

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

JavaScript:

const char = '\u0271';
console.log(char);  // Output: ɱ

Java:

char c = '\u0271';
System.out.println(c);  // Output: ɱ

JSON:

{"text": "\u0271"}  // Value: ɱ

Python:

char = '\u0271'
print(char)  # Output: ɱ

Perl:

my $char = "\x{0271}";
print $char;  # Output: ɱ

PHP:

$char = "\x{0271}";
echo $char;  // Output: ɱ

Ruby:

char = "\u{0271}"
puts char  # Output: ɱ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000271";  /* Display: ɱ */
}

HTML Decimal:

<p>HTML decimal: &#625;</p>  <!-- Display: ɱ -->

HTML Hexadecimal:

<p>HTML hex: &#x0271;</p>  <!-- Display: ɱ -->

URL Encoding:

// ɱ URL encoding
https://unicodefinder.com/search.php?query=%C9%B1

Encodings

MD5:

75879d5782aa3fb76efc6046531c8882

SHA1:

4328a458bc7493df9f42d3ac2e35dbafbbb0d364

Base64:

ybE=