Unicode Finder

"〦" U+3026(HANGZHOU NUMERAL SIX)

U+3026
ブロック名
CJK Symbols and Punctuation
名前
HANGZHOU NUMERAL SIX

Programming

C
\u3026
JavaScript
\u3026
Java
\u3026
Json
\u3026
Python
\u3026
Perl
\x{3026}
PHP
\x{3026}
Ruby
\u{3026}
Rust
\u{3026}
Go
\u3026

Web

CSS
\003026
HtmlDecimal
〦
HtmlHexadecimal
〦
Url
%E3%80%A6

Code

MD5
a06ae272911eb4053fd3d0dd486c0f8b
Sha1
1726050f00679e0391a1c738a7a68f0a565fea21
Base64
44Cm

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u3026';
console.log(char);  // Output: 〦

Java:

char c = '\u3026';
System.out.println(c);  // Output: 〦

JSON:

{"text": "\u3026"}  // Value: 〦

Python:

char = '\u3026'
print(char)  # Output: 〦

Perl:

my $char = "\x{3026}";
print $char;  # Output: 〦

PHP:

$char = "\x{3026}";
echo $char;  // Output: 〦

Ruby:

char = "\u{3026}"
puts char  # Output: 〦

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\003026";  /* Display: 〦 */
}

HTML Decimal:

<p>HTML decimal: &#12326;</p>  <!-- Display: 〦 -->

HTML Hexadecimal:

<p>HTML hex: &#x3026;</p>  <!-- Display: 〦 -->

URL Encoding:

// 〦 URL encoding
https://unicodefinder.com/search.php?query=%E3%80%A6

Encodings

MD5:

a06ae272911eb4053fd3d0dd486c0f8b

SHA1:

1726050f00679e0391a1c738a7a68f0a565fea21

Base64:

44Cm