Unicode Finder

"Ԇ" U+0506(CYRILLIC CAPITAL LETTER KOMI DZJE)

Ԇ
U+0506
بلاک کا نام
Cyrillic Supplement
نام
CYRILLIC CAPITAL LETTER KOMI DZJE

Programming

C
\u0506
JavaScript
\u0506
Java
\u0506
Json
\u0506
Python
\u0506
Perl
\x{0506}
PHP
\x{0506}
Ruby
\u{0506}
Rust
\u{506}
Go
\u0506

Web

CSS
\000506
HtmlDecimal
Ԇ
HtmlHexadecimal
Ԇ
Url
%D4%86

Code

MD5
3082a52e49fbe0744d3fe45b6a5b7f6a
Sha1
000df8b78e5750e64f4ed80922786041330756fb
Base64
1IY=

استعمال کی مثالیں

Programming Languages

C:

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

JavaScript:

const char = '\u0506';
console.log(char);  // Output: Ԇ

Java:

char c = '\u0506';
System.out.println(c);  // Output: Ԇ

JSON:

{"text": "\u0506"}  // Value: Ԇ

Python:

char = '\u0506'
print(char)  # Output: Ԇ

Perl:

my $char = "\x{0506}";
print $char;  # Output: Ԇ

PHP:

$char = "\x{0506}";
echo $char;  // Output: Ԇ

Ruby:

char = "\u{0506}"
puts char  # Output: Ԇ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000506";  /* Display: Ԇ */
}

HTML Decimal:

<p>HTML decimal: &#1286;</p>  <!-- Display: Ԇ -->

HTML Hexadecimal:

<p>HTML hex: &#x0506;</p>  <!-- Display: Ԇ -->

URL Encoding:

// Ԇ URL encoding
https://unicodefinder.com/search.php?query=%D4%86

Encodings

MD5:

3082a52e49fbe0744d3fe45b6a5b7f6a

SHA1:

000df8b78e5750e64f4ed80922786041330756fb

Base64:

1IY=