Unicode Finder

"そ" U+305D(HIRAGANA LETTER SO)

U+305D
ブロック名
Hiragana
名前
HIRAGANA LETTER SO

Programming

C
\u305D
JavaScript
\u305D
Java
\u305D
Json
\u305D
Python
\u305D
Perl
\x{305D}
PHP
\x{305D}
Ruby
\u{305D}
Rust
\u{305D}
Go
\u305D

Web

CSS
\00305D
HtmlDecimal
そ
HtmlHexadecimal
そ
Url
%E3%81%9D

Code

MD5
2d5f27ce2f0f2f8e471694673c5755cf
Sha1
b345d8cc836859f8fb23d8bbd6940d78cf0ee54c
Base64
44Gd

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u305D';
console.log(char);  // Output: そ

Java:

char c = '\u305D';
System.out.println(c);  // Output: そ

JSON:

{"text": "\u305D"}  // Value: そ

Python:

char = '\u305D'
print(char)  # Output: そ

Perl:

my $char = "\x{305D}";
print $char;  # Output: そ

PHP:

$char = "\x{305D}";
echo $char;  // Output: そ

Ruby:

char = "\u{305D}"
puts char  # Output: そ

Rust:

let c = '\u{305D}';
println!("{}", c);  // Output: そ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00305D";  /* Display: そ */
}

HTML Decimal:

<p>HTML decimal: &#12381;</p>  <!-- Display: そ -->

HTML Hexadecimal:

<p>HTML hex: &#x305D;</p>  <!-- Display: そ -->

URL Encoding:

// そ URL encoding
https://unicodefinder.com/search.php?query=%E3%81%9D

Encodings

MD5:

2d5f27ce2f0f2f8e471694673c5755cf

SHA1:

b345d8cc836859f8fb23d8bbd6940d78cf0ee54c

Base64:

44Gd