Unicode Finder

"ɶ" U+0276(LATIN LETTER SMALL CAPITAL OE)

ɶ
U+0276
Nume Bloc
IPA Extensions
Nume
LATIN LETTER SMALL CAPITAL OE

Programming

C
\u0276
JavaScript
\u0276
Java
\u0276
Json
\u0276
Python
\u0276
Perl
\x{0276}
PHP
\x{0276}
Ruby
\u{0276}
Rust
\u{276}
Go
\u0276

Web

CSS
\000276
HtmlDecimal
ɶ
HtmlHexadecimal
ɶ
Url
%C9%B6

Code

MD5
6cd8c94e94f326bffff6eb5af1cf6eb5
Sha1
a93ce49480cc8db698774ba7a9c9a57e187888c4
Base64
ybY=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0276';
console.log(char);  // Output: ɶ

Java:

char c = '\u0276';
System.out.println(c);  // Output: ɶ

JSON:

{"text": "\u0276"}  // Value: ɶ

Python:

char = '\u0276'
print(char)  # Output: ɶ

Perl:

my $char = "\x{0276}";
print $char;  # Output: ɶ

PHP:

$char = "\x{0276}";
echo $char;  // Output: ɶ

Ruby:

char = "\u{0276}"
puts char  # Output: ɶ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000276";  /* Display: ɶ */
}

HTML Decimal:

<p>HTML decimal: &#630;</p>  <!-- Display: ɶ -->

HTML Hexadecimal:

<p>HTML hex: &#x0276;</p>  <!-- Display: ɶ -->

URL Encoding:

// ɶ URL encoding
https://unicodefinder.com/search.php?query=%C9%B6

Encodings

MD5:

6cd8c94e94f326bffff6eb5af1cf6eb5

SHA1:

a93ce49480cc8db698774ba7a9c9a57e187888c4

Base64:

ybY=