Unicode Finder

"ぱ" U+3071(HIRAGANA LETTER PA)

U+3071
ブロック名
Hiragana
名前
HIRAGANA LETTER PA

Programming

C
\u3071
JavaScript
\u3071
Java
\u3071
Json
\u3071
Python
\u3071
Perl
\x{3071}
PHP
\x{3071}
Ruby
\u{3071}
Rust
\u{3071}
Go
\u3071

Web

CSS
\003071
HtmlDecimal
ぱ
HtmlHexadecimal
ぱ
Url
%E3%81%B1

Code

MD5
82c3cfaa268fd63d12204607951a5576
Sha1
81223f8ee527c6ee4921fedc4918e7a76161e644
Base64
44Gx

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u3071';
console.log(char);  // Output: ぱ

Java:

char c = '\u3071';
System.out.println(c);  // Output: ぱ

JSON:

{"text": "\u3071"}  // Value: ぱ

Python:

char = '\u3071'
print(char)  # Output: ぱ

Perl:

my $char = "\x{3071}";
print $char;  # Output: ぱ

PHP:

$char = "\x{3071}";
echo $char;  // Output: ぱ

Ruby:

char = "\u{3071}"
puts char  # Output: ぱ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\003071";  /* Display: ぱ */
}

HTML Decimal:

<p>HTML decimal: &#12401;</p>  <!-- Display: ぱ -->

HTML Hexadecimal:

<p>HTML hex: &#x3071;</p>  <!-- Display: ぱ -->

URL Encoding:

// ぱ URL encoding
https://unicodefinder.com/search.php?query=%E3%81%B1

Encodings

MD5:

82c3cfaa268fd63d12204607951a5576

SHA1:

81223f8ee527c6ee4921fedc4918e7a76161e644

Base64:

44Gx