Unicode Finder

"Ř" U+0158(LATIN CAPITAL LETTER R WITH CARON)

Ř
U+0158
Blokk Neve
Latin Extended-A
Név
LATIN CAPITAL LETTER R WITH CARON

Programming

C
\u0158
JavaScript
\u0158
Java
\u0158
Json
\u0158
Python
\u0158
Perl
\x{0158}
PHP
\x{0158}
Ruby
\u{0158}
Rust
\u{158}
Go
\u0158

Web

CSS
\000158
HtmlDecimal
Ř
HtmlHexadecimal
Ř
Url
%C5%98

Code

MD5
1a6a381715e135488c49de5019a9812e
Sha1
f21f28b5e6b37c587c50c2b0d971d403fc938aa6
Base64
xZg=

Használati Példák

Programming Languages

C:

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

JavaScript:

const char = '\u0158';
console.log(char);  // Output: Ř

Java:

char c = '\u0158';
System.out.println(c);  // Output: Ř

JSON:

{"text": "\u0158"}  // Value: Ř

Python:

char = '\u0158'
print(char)  # Output: Ř

Perl:

my $char = "\x{0158}";
print $char;  # Output: Ř

PHP:

$char = "\x{0158}";
echo $char;  // Output: Ř

Ruby:

char = "\u{0158}"
puts char  # Output: Ř

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000158";  /* Display: Ř */
}

HTML Decimal:

<p>HTML decimal: &#344;</p>  <!-- Display: Ř -->

HTML Hexadecimal:

<p>HTML hex: &#x0158;</p>  <!-- Display: Ř -->

URL Encoding:

// Ř URL encoding
https://unicodefinder.com/search.php?query=%C5%98

Encodings

MD5:

1a6a381715e135488c49de5019a9812e

SHA1:

f21f28b5e6b37c587c50c2b0d971d403fc938aa6

Base64:

xZg=