Unicode Finder

"Г" U+0413(CYRILLIC CAPITAL LETTER GHE)

Г
U+0413
Назва Блоку
Cyrillic
Назва
CYRILLIC CAPITAL LETTER GHE

Programming

C
\u0413
JavaScript
\u0413
Java
\u0413
Json
\u0413
Python
\u0413
Perl
\x{0413}
PHP
\x{0413}
Ruby
\u{0413}
Rust
\u{413}
Go
\u0413

Web

CSS
\000413
HtmlDecimal
Г
HtmlHexadecimal
Г
Url
%D0%93

Code

MD5
41980a207bebb420a63554999d6e78dc
Sha1
c43ed2c2722af04d2631d8f6809d2d75330961a7
Base64
0JM=

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

Programming Languages

C:

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

JavaScript:

const char = '\u0413';
console.log(char);  // Output: Г

Java:

char c = '\u0413';
System.out.println(c);  // Output: Г

JSON:

{"text": "\u0413"}  // Value: Г

Python:

char = '\u0413'
print(char)  # Output: Г

Perl:

my $char = "\x{0413}";
print $char;  # Output: Г

PHP:

$char = "\x{0413}";
echo $char;  // Output: Г

Ruby:

char = "\u{0413}"
puts char  # Output: Г

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000413";  /* Display: Г */
}

HTML Decimal:

<p>HTML decimal: &#1043;</p>  <!-- Display: Г -->

HTML Hexadecimal:

<p>HTML hex: &#x0413;</p>  <!-- Display: Г -->

URL Encoding:

// Г URL encoding
https://unicodefinder.com/search.php?query=%D0%93

Encodings

MD5:

41980a207bebb420a63554999d6e78dc

SHA1:

c43ed2c2722af04d2631d8f6809d2d75330961a7

Base64:

0JM=