Unicode Finder

"〼" U+303C(MASU MARK)

U+303C
ブロック名
CJK Symbols and Punctuation
名前
MASU MARK

Programming

C
\u303C
JavaScript
\u303C
Java
\u303C
Json
\u303C
Python
\u303C
Perl
\x{303C}
PHP
\x{303C}
Ruby
\u{303C}
Rust
\u{303C}
Go
\u303C

Web

CSS
\00303C
HtmlDecimal
〼
HtmlHexadecimal
〼
Url
%E3%80%BC

Code

MD5
45331a7e5c957c51309aa02e1699caf6
Sha1
43ee97712e54d95dd36e34a0b17e502fa1e6ce19
Base64
44C8

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u303C';
console.log(char);  // Output: 〼

Java:

char c = '\u303C';
System.out.println(c);  // Output: 〼

JSON:

{"text": "\u303C"}  // Value: 〼

Python:

char = '\u303C'
print(char)  # Output: 〼

Perl:

my $char = "\x{303C}";
print $char;  # Output: 〼

PHP:

$char = "\x{303C}";
echo $char;  // Output: 〼

Ruby:

char = "\u{303C}"
puts char  # Output: 〼

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#12348;</p>  <!-- Display: 〼 -->

HTML Hexadecimal:

<p>HTML hex: &#x303C;</p>  <!-- Display: 〼 -->

URL Encoding:

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

Encodings

MD5:

45331a7e5c957c51309aa02e1699caf6

SHA1:

43ee97712e54d95dd36e34a0b17e502fa1e6ce19

Base64:

44C8