Unicode Finder

"ɕ" U+0255(LATIN SMALL LETTER C WITH CURL)

ɕ
U+0255
Nume Bloc
IPA Extensions
Nume
LATIN SMALL LETTER C WITH CURL

Programming

C
\u0255
JavaScript
\u0255
Java
\u0255
Json
\u0255
Python
\u0255
Perl
\x{0255}
PHP
\x{0255}
Ruby
\u{0255}
Rust
\u{255}
Go
\u0255

Web

CSS
\000255
HtmlDecimal
ɕ
HtmlHexadecimal
ɕ
Url
%C9%95

Code

MD5
053f9b18798b4f4258eb12f97f1448f6
Sha1
de9d374479f20be075a1893b20bf5d7a638caa8c
Base64
yZU=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0255';
console.log(char);  // Output: ɕ

Java:

char c = '\u0255';
System.out.println(c);  // Output: ɕ

JSON:

{"text": "\u0255"}  // Value: ɕ

Python:

char = '\u0255'
print(char)  # Output: ɕ

Perl:

my $char = "\x{0255}";
print $char;  # Output: ɕ

PHP:

$char = "\x{0255}";
echo $char;  // Output: ɕ

Ruby:

char = "\u{0255}"
puts char  # Output: ɕ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000255";  /* Display: ɕ */
}

HTML Decimal:

<p>HTML decimal: &#597;</p>  <!-- Display: ɕ -->

HTML Hexadecimal:

<p>HTML hex: &#x0255;</p>  <!-- Display: ɕ -->

URL Encoding:

// ɕ URL encoding
https://unicodefinder.com/search.php?query=%C9%95

Encodings

MD5:

053f9b18798b4f4258eb12f97f1448f6

SHA1:

de9d374479f20be075a1893b20bf5d7a638caa8c

Base64:

yZU=