Unicode Finder

"͵" U+0375(GREEK LOWER NUMERAL SIGN)

͵
U+0375
區塊名稱
Greek and Coptic
名稱
GREEK LOWER NUMERAL SIGN

Programming

C
\u0375
JavaScript
\u0375
Java
\u0375
Json
\u0375
Python
\u0375
Perl
\x{0375}
PHP
\x{0375}
Ruby
\u{0375}
Rust
\u{375}
Go
\u0375

Web

CSS
\000375
HtmlDecimal
͵
HtmlHexadecimal
͵
Url
%CD%B5

Code

MD5
166843710af8418e5dda56fa1a8171ed
Sha1
7c645b52707e767e9955aec5c1c5c711d66c50cb
Base64
zbU=

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u0375';
console.log(char);  // Output: ͵

Java:

char c = '\u0375';
System.out.println(c);  // Output: ͵

JSON:

{"text": "\u0375"}  // Value: ͵

Python:

char = '\u0375'
print(char)  # Output: ͵

Perl:

my $char = "\x{0375}";
print $char;  # Output: ͵

PHP:

$char = "\x{0375}";
echo $char;  // Output: ͵

Ruby:

char = "\u{0375}"
puts char  # Output: ͵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\000375";  /* Display: ͵ */
}

HTML Decimal:

<p>HTML decimal: &#885;</p>  <!-- Display: ͵ -->

HTML Hexadecimal:

<p>HTML hex: &#x0375;</p>  <!-- Display: ͵ -->

URL Encoding:

// ͵ URL encoding
https://unicodefinder.com/search.php?query=%CD%B5

Encodings

MD5:

166843710af8418e5dda56fa1a8171ed

SHA1:

7c645b52707e767e9955aec5c1c5c711d66c50cb

Base64:

zbU=