Unicode Finder

"ȝ" U+021D(LATIN SMALL LETTER YOGH)

ȝ
U+021D
Nume Bloc
Latin Extended-B
Nume
LATIN SMALL LETTER YOGH

Programming

C
\u021D
JavaScript
\u021D
Java
\u021D
Json
\u021D
Python
\u021D
Perl
\x{021D}
PHP
\x{021D}
Ruby
\u{021D}
Rust
\u{21D}
Go
\u021D

Web

CSS
\00021D
HtmlDecimal
ȝ
HtmlHexadecimal
ȝ
Url
%C8%9D

Code

MD5
07fbae7537124cc18fd38477ce217cf0
Sha1
590f28213204c4e42bd4c3cf451e22dd8a352904
Base64
yJ0=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u021D';
console.log(char);  // Output: ȝ

Java:

char c = '\u021D';
System.out.println(c);  // Output: ȝ

JSON:

{"text": "\u021D"}  // Value: ȝ

Python:

char = '\u021D'
print(char)  # Output: ȝ

Perl:

my $char = "\x{021D}";
print $char;  # Output: ȝ

PHP:

$char = "\x{021D}";
echo $char;  // Output: ȝ

Ruby:

char = "\u{021D}"
puts char  # Output: ȝ

Rust:

let c = '\u{21D}';
println!("{}", c);  // Output: ȝ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00021D";  /* Display: ȝ */
}

HTML Decimal:

<p>HTML decimal: &#541;</p>  <!-- Display: ȝ -->

HTML Hexadecimal:

<p>HTML hex: &#x021D;</p>  <!-- Display: ȝ -->

URL Encoding:

// ȝ URL encoding
https://unicodefinder.com/search.php?query=%C8%9D

Encodings

MD5:

07fbae7537124cc18fd38477ce217cf0

SHA1:

590f28213204c4e42bd4c3cf451e22dd8a352904

Base64:

yJ0=