Unicode Finder

"Ѓ" U+0403(CYRILLIC CAPITAL LETTER GJE)

Ѓ
U+0403
Όνομα Μπλοκ
Cyrillic
Όνομα
CYRILLIC CAPITAL LETTER GJE

Programming

C
\u0403
JavaScript
\u0403
Java
\u0403
Json
\u0403
Python
\u0403
Perl
\x{0403}
PHP
\x{0403}
Ruby
\u{0403}
Rust
\u{403}
Go
\u0403

Web

CSS
\000403
HtmlDecimal
Ѓ
HtmlHexadecimal
Ѓ
Url
%D0%83

Code

MD5
4974e2825787ef15ed78978aac5d221e
Sha1
f3d04697f53d373d60b926de87c881c219fea1cb
Base64
0IM=

Παραδείγματα Χρήσης

Programming Languages

C:

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

JavaScript:

const char = '\u0403';
console.log(char);  // Output: Ѓ

Java:

char c = '\u0403';
System.out.println(c);  // Output: Ѓ

JSON:

{"text": "\u0403"}  // Value: Ѓ

Python:

char = '\u0403'
print(char)  # Output: Ѓ

Perl:

my $char = "\x{0403}";
print $char;  # Output: Ѓ

PHP:

$char = "\x{0403}";
echo $char;  // Output: Ѓ

Ruby:

char = "\u{0403}"
puts char  # Output: Ѓ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000403";  /* Display: Ѓ */
}

HTML Decimal:

<p>HTML decimal: &#1027;</p>  <!-- Display: Ѓ -->

HTML Hexadecimal:

<p>HTML hex: &#x0403;</p>  <!-- Display: Ѓ -->

URL Encoding:

// Ѓ URL encoding
https://unicodefinder.com/search.php?query=%D0%83

Encodings

MD5:

4974e2825787ef15ed78978aac5d221e

SHA1:

f3d04697f53d373d60b926de87c881c219fea1cb

Base64:

0IM=