Unicode Finder

"ぐ" U+3050(HIRAGANA LETTER GU)

U+3050
ブロック名
Hiragana
名前
HIRAGANA LETTER GU

Programming

C
\u3050
JavaScript
\u3050
Java
\u3050
Json
\u3050
Python
\u3050
Perl
\x{3050}
PHP
\x{3050}
Ruby
\u{3050}
Rust
\u{3050}
Go
\u3050

Web

CSS
\003050
HtmlDecimal
ぐ
HtmlHexadecimal
ぐ
Url
%E3%81%90

Code

MD5
979084e26788089be567737c191af5c2
Sha1
6e159a91b7ceb7c7922cf3075445e9955b797c6d
Base64
44GQ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u3050';
console.log(char);  // Output: ぐ

Java:

char c = '\u3050';
System.out.println(c);  // Output: ぐ

JSON:

{"text": "\u3050"}  // Value: ぐ

Python:

char = '\u3050'
print(char)  # Output: ぐ

Perl:

my $char = "\x{3050}";
print $char;  # Output: ぐ

PHP:

$char = "\x{3050}";
echo $char;  // Output: ぐ

Ruby:

char = "\u{3050}"
puts char  # Output: ぐ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\003050";  /* Display: ぐ */
}

HTML Decimal:

<p>HTML decimal: &#12368;</p>  <!-- Display: ぐ -->

HTML Hexadecimal:

<p>HTML hex: &#x3050;</p>  <!-- Display: ぐ -->

URL Encoding:

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

Encodings

MD5:

979084e26788089be567737c191af5c2

SHA1:

6e159a91b7ceb7c7922cf3075445e9955b797c6d

Base64:

44GQ