Unicode Finder

"Ȝ" U+021C(LATIN CAPITAL LETTER YOGH)

Ȝ
U+021C
Nume Bloc
Latin Extended-B
Nume
LATIN CAPITAL LETTER YOGH

Programming

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

Web

CSS
\00021C
HtmlDecimal
Ȝ
HtmlHexadecimal
Ȝ
Url
%C8%9C

Code

MD5
1842a27e5d10fd3b38df62845f56e82a
Sha1
bc7ce790ba704c8794f5b440eaae3e33c5f0a60c
Base64
yJw=

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u021C';
console.log(char);  // Output: Ȝ

Java:

char c = '\u021C';
System.out.println(c);  // Output: Ȝ

JSON:

{"text": "\u021C"}  // Value: Ȝ

Python:

char = '\u021C'
print(char)  # Output: Ȝ

Perl:

my $char = "\x{021C}";
print $char;  # Output: Ȝ

PHP:

$char = "\x{021C}";
echo $char;  // Output: Ȝ

Ruby:

char = "\u{021C}"
puts char  # Output: Ȝ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#540;</p>  <!-- Display: Ȝ -->

HTML Hexadecimal:

<p>HTML hex: &#x021C;</p>  <!-- Display: Ȝ -->

URL Encoding:

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

Encodings

MD5:

1842a27e5d10fd3b38df62845f56e82a

SHA1:

bc7ce790ba704c8794f5b440eaae3e33c5f0a60c

Base64:

yJw=