Unicode Finder

"ȥ" U+0225(LATIN SMALL LETTER Z WITH HOOK)

ȥ
U+0225
Nume Bloc
Latin Extended-B
Nume
LATIN SMALL LETTER Z WITH HOOK

Programming

C
\u0225
JavaScript
\u0225
Java
\u0225
Json
\u0225
Python
\u0225
Perl
\x{0225}
PHP
\x{0225}
Ruby
\u{0225}
Rust
\u{225}
Go
\u0225

Web

CSS
\000225
HtmlDecimal
ȥ
HtmlHexadecimal
ȥ
Url
%C8%A5

Code

MD5
7818ebcff8bdba4966b19c5903090f58
Sha1
751eae867dfe8c3d75a41375972308774db52e08
Base64
yKU=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u0225';
console.log(char);  // Output: ȥ

Java:

char c = '\u0225';
System.out.println(c);  // Output: ȥ

JSON:

{"text": "\u0225"}  // Value: ȥ

Python:

char = '\u0225'
print(char)  # Output: ȥ

Perl:

my $char = "\x{0225}";
print $char;  # Output: ȥ

PHP:

$char = "\x{0225}";
echo $char;  // Output: ȥ

Ruby:

char = "\u{0225}"
puts char  # Output: ȥ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000225";  /* Display: ȥ */
}

HTML Decimal:

<p>HTML decimal: &#549;</p>  <!-- Display: ȥ -->

HTML Hexadecimal:

<p>HTML hex: &#x0225;</p>  <!-- Display: ȥ -->

URL Encoding:

// ȥ URL encoding
https://unicodefinder.com/search.php?query=%C8%A5

Encodings

MD5:

7818ebcff8bdba4966b19c5903090f58

SHA1:

751eae867dfe8c3d75a41375972308774db52e08

Base64:

yKU=