Unicode Finder

"ݸ" U+0778(ARABIC LETTER WAW WITH EXTENDED ARABIC-INDIC DIGIT TWO ABOVE)

ݸ
U+0778
ブロック名
Arabic Supplement
名前
ARABIC LETTER WAW WITH EXTENDED ARABIC-INDIC DIGIT TWO ABOVE

Programming

C
\u0778
JavaScript
\u0778
Java
\u0778
Json
\u0778
Python
\u0778
Perl
\x{0778}
PHP
\x{0778}
Ruby
\u{0778}
Rust
\u{778}
Go
\u0778

Web

CSS
\000778
HtmlDecimal
ݸ
HtmlHexadecimal
ݸ
Url
%DD%B8

Code

MD5
189fc2dd42e313c5995ea5a0133923a7
Sha1
69a34771d9c9f489a98fc506214f61c38b9dcf56
Base64
3bg=

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u0778';
console.log(char);  // Output: ݸ

Java:

char c = '\u0778';
System.out.println(c);  // Output: ݸ

JSON:

{"text": "\u0778"}  // Value: ݸ

Python:

char = '\u0778'
print(char)  # Output: ݸ

Perl:

my $char = "\x{0778}";
print $char;  # Output: ݸ

PHP:

$char = "\x{0778}";
echo $char;  // Output: ݸ

Ruby:

char = "\u{0778}"
puts char  # Output: ݸ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000778";  /* Display: ݸ */
}

HTML Decimal:

<p>HTML decimal: &#1912;</p>  <!-- Display: ݸ -->

HTML Hexadecimal:

<p>HTML hex: &#x0778;</p>  <!-- Display: ݸ -->

URL Encoding:

// ݸ URL encoding
https://unicodefinder.com/search.php?query=%DD%B8

Encodings

MD5:

189fc2dd42e313c5995ea5a0133923a7

SHA1:

69a34771d9c9f489a98fc506214f61c38b9dcf56

Base64:

3bg=