Unicode Finder

"ɥ" U+0265(LATIN SMALL LETTER TURNED H)

ɥ
U+0265
Nume Bloc
IPA Extensions
Nume
LATIN SMALL LETTER TURNED H

Programming

C
\u0265
JavaScript
\u0265
Java
\u0265
Json
\u0265
Python
\u0265
Perl
\x{0265}
PHP
\x{0265}
Ruby
\u{0265}
Rust
\u{265}
Go
\u0265

Web

CSS
\000265
HtmlDecimal
ɥ
HtmlHexadecimal
ɥ
Url
%C9%A5

Code

MD5
5b905d9a348fcc11badeec1d27023c58
Sha1
52bb711beffddd24256500e12629c5a41ffb714c
Base64
yaU=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0265';
console.log(char);  // Output: ɥ

Java:

char c = '\u0265';
System.out.println(c);  // Output: ɥ

JSON:

{"text": "\u0265"}  // Value: ɥ

Python:

char = '\u0265'
print(char)  # Output: ɥ

Perl:

my $char = "\x{0265}";
print $char;  # Output: ɥ

PHP:

$char = "\x{0265}";
echo $char;  // Output: ɥ

Ruby:

char = "\u{0265}"
puts char  # Output: ɥ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000265";  /* Display: ɥ */
}

HTML Decimal:

<p>HTML decimal: &#613;</p>  <!-- Display: ɥ -->

HTML Hexadecimal:

<p>HTML hex: &#x0265;</p>  <!-- Display: ɥ -->

URL Encoding:

// ɥ URL encoding
https://unicodefinder.com/search.php?query=%C9%A5

Encodings

MD5:

5b905d9a348fcc11badeec1d27023c58

SHA1:

52bb711beffddd24256500e12629c5a41ffb714c

Base64:

yaU=