Unicode Finder

"Җ" U+0496(CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER)

Җ
U+0496
Назва Блоку
Cyrillic
Назва
CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER

Programming

C
\u0496
JavaScript
\u0496
Java
\u0496
Json
\u0496
Python
\u0496
Perl
\x{0496}
PHP
\x{0496}
Ruby
\u{0496}
Rust
\u{496}
Go
\u0496

Web

CSS
\000496
HtmlDecimal
Җ
HtmlHexadecimal
Җ
Url
%D2%96

Code

MD5
6412554562185e7a07a6d0cf20234af4
Sha1
f189e03be39182934ecd0645d6f19033a8dcc619
Base64
0pY=

Приклади Використання

Programming Languages

C:

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

JavaScript:

const char = '\u0496';
console.log(char);  // Output: Җ

Java:

char c = '\u0496';
System.out.println(c);  // Output: Җ

JSON:

{"text": "\u0496"}  // Value: Җ

Python:

char = '\u0496'
print(char)  # Output: Җ

Perl:

my $char = "\x{0496}";
print $char;  # Output: Җ

PHP:

$char = "\x{0496}";
echo $char;  // Output: Җ

Ruby:

char = "\u{0496}"
puts char  # Output: Җ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000496";  /* Display: Җ */
}

HTML Decimal:

<p>HTML decimal: &#1174;</p>  <!-- Display: Җ -->

HTML Hexadecimal:

<p>HTML hex: &#x0496;</p>  <!-- Display: Җ -->

URL Encoding:

// Җ URL encoding
https://unicodefinder.com/search.php?query=%D2%96

Encodings

MD5:

6412554562185e7a07a6d0cf20234af4

SHA1:

f189e03be39182934ecd0645d6f19033a8dcc619

Base64:

0pY=