Unicode Finder

"ɹ" U+0279(LATIN SMALL LETTER TURNED R)

ɹ
U+0279
Nume Bloc
IPA Extensions
Nume
LATIN SMALL LETTER TURNED R

Programming

C
\u0279
JavaScript
\u0279
Java
\u0279
Json
\u0279
Python
\u0279
Perl
\x{0279}
PHP
\x{0279}
Ruby
\u{0279}
Rust
\u{279}
Go
\u0279

Web

CSS
\000279
HtmlDecimal
ɹ
HtmlHexadecimal
ɹ
Url
%C9%B9

Code

MD5
85033ec324bb64d777d5030e55d5c950
Sha1
49c31a08447dccac6431c75ebf49c5fd6b0206ea
Base64
ybk=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0279';
console.log(char);  // Output: ɹ

Java:

char c = '\u0279';
System.out.println(c);  // Output: ɹ

JSON:

{"text": "\u0279"}  // Value: ɹ

Python:

char = '\u0279'
print(char)  # Output: ɹ

Perl:

my $char = "\x{0279}";
print $char;  # Output: ɹ

PHP:

$char = "\x{0279}";
echo $char;  // Output: ɹ

Ruby:

char = "\u{0279}"
puts char  # Output: ɹ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000279";  /* Display: ɹ */
}

HTML Decimal:

<p>HTML decimal: &#633;</p>  <!-- Display: ɹ -->

HTML Hexadecimal:

<p>HTML hex: &#x0279;</p>  <!-- Display: ɹ -->

URL Encoding:

// ɹ URL encoding
https://unicodefinder.com/search.php?query=%C9%B9

Encodings

MD5:

85033ec324bb64d777d5030e55d5c950

SHA1:

49c31a08447dccac6431c75ebf49c5fd6b0206ea

Base64:

ybk=