Unicode Finder

"〆" U+3006(IDEOGRAPHIC CLOSING MARK)

U+3006
ブロック名
CJK Symbols and Punctuation
名前
IDEOGRAPHIC CLOSING MARK

Programming

C
\u3006
JavaScript
\u3006
Java
\u3006
Json
\u3006
Python
\u3006
Perl
\x{3006}
PHP
\x{3006}
Ruby
\u{3006}
Rust
\u{3006}
Go
\u3006

Web

CSS
\003006
HtmlDecimal
〆
HtmlHexadecimal
〆
Url
%E3%80%86

Code

MD5
17b40150770dd5e6fa3b48e8b63a833d
Sha1
429264c37970539ff024d548e75168129ab0bbef
Base64
44CG

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u3006';
console.log(char);  // Output: 〆

Java:

char c = '\u3006';
System.out.println(c);  // Output: 〆

JSON:

{"text": "\u3006"}  // Value: 〆

Python:

char = '\u3006'
print(char)  # Output: 〆

Perl:

my $char = "\x{3006}";
print $char;  # Output: 〆

PHP:

$char = "\x{3006}";
echo $char;  // Output: 〆

Ruby:

char = "\u{3006}"
puts char  # Output: 〆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\003006";  /* Display: 〆 */
}

HTML Decimal:

<p>HTML decimal: &#12294;</p>  <!-- Display: 〆 -->

HTML Hexadecimal:

<p>HTML hex: &#x3006;</p>  <!-- Display: 〆 -->

URL Encoding:

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

Encodings

MD5:

17b40150770dd5e6fa3b48e8b63a833d

SHA1:

429264c37970539ff024d548e75168129ab0bbef

Base64:

44CG