Unicode Finder

"ݼ" U+077C(ARABIC LETTER HAH WITH EXTENDED ARABIC-INDIC DIGIT FOUR BELOW)

ݼ
U+077C
블록 이름
Arabic Supplement
이름
ARABIC LETTER HAH WITH EXTENDED ARABIC-INDIC DIGIT FOUR BELOW

Programming

C
\u077C
JavaScript
\u077C
Java
\u077C
Json
\u077C
Python
\u077C
Perl
\x{077C}
PHP
\x{077C}
Ruby
\u{077C}
Rust
\u{77C}
Go
\u077C

Web

CSS
\00077C
HtmlDecimal
ݼ
HtmlHexadecimal
ݼ
Url
%DD%BC

Code

MD5
e92621e221b92edbe76f1ee4114cb1c5
Sha1
6532ddba76d073720f5a873172871d26a745cda4
Base64
3bw=

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u077C';
console.log(char);  // Output: ݼ

Java:

char c = '\u077C';
System.out.println(c);  // Output: ݼ

JSON:

{"text": "\u077C"}  // Value: ݼ

Python:

char = '\u077C'
print(char)  # Output: ݼ

Perl:

my $char = "\x{077C}";
print $char;  # Output: ݼ

PHP:

$char = "\x{077C}";
echo $char;  // Output: ݼ

Ruby:

char = "\u{077C}"
puts char  # Output: ݼ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#1916;</p>  <!-- Display: ݼ -->

HTML Hexadecimal:

<p>HTML hex: &#x077C;</p>  <!-- Display: ݼ -->

URL Encoding:

// ݼ URL encoding
https://unicodefinder.com/search.php?query=%DD%BC

Encodings

MD5:

e92621e221b92edbe76f1ee4114cb1c5

SHA1:

6532ddba76d073720f5a873172871d26a745cda4

Base64:

3bw=