Unicode Finder

"Ɨ" U+0197(LATIN CAPITAL LETTER I WITH STROKE)

Ɨ
U+0197
Název Bloku
Latin Extended-B
Název
LATIN CAPITAL LETTER I WITH STROKE

Programming

C
\u0197
JavaScript
\u0197
Java
\u0197
Json
\u0197
Python
\u0197
Perl
\x{0197}
PHP
\x{0197}
Ruby
\u{0197}
Rust
\u{197}
Go
\u0197

Web

CSS
\000197
HtmlDecimal
Ɨ
HtmlHexadecimal
Ɨ
Url
%C6%97

Code

MD5
2045e31bde38c0f73c05b4aebb75d180
Sha1
10981dd8d6cb7c884e97eec064c8de9af2d54047
Base64
xpc=

Příklady Použití

Programming Languages

C:

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

JavaScript:

const char = '\u0197';
console.log(char);  // Output: Ɨ

Java:

char c = '\u0197';
System.out.println(c);  // Output: Ɨ

JSON:

{"text": "\u0197"}  // Value: Ɨ

Python:

char = '\u0197'
print(char)  # Output: Ɨ

Perl:

my $char = "\x{0197}";
print $char;  # Output: Ɨ

PHP:

$char = "\x{0197}";
echo $char;  // Output: Ɨ

Ruby:

char = "\u{0197}"
puts char  # Output: Ɨ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000197";  /* Display: Ɨ */
}

HTML Decimal:

<p>HTML decimal: &#407;</p>  <!-- Display: Ɨ -->

HTML Hexadecimal:

<p>HTML hex: &#x0197;</p>  <!-- Display: Ɨ -->

URL Encoding:

// Ɨ URL encoding
https://unicodefinder.com/search.php?query=%C6%97

Encodings

MD5:

2045e31bde38c0f73c05b4aebb75d180

SHA1:

10981dd8d6cb7c884e97eec064c8de9af2d54047

Base64:

xpc=