Unicode Finder

"ぼ" U+307C(HIRAGANA LETTER BO)

U+307C
ブロック名
Hiragana
名前
HIRAGANA LETTER BO

Programming

C
\u307C
JavaScript
\u307C
Java
\u307C
Json
\u307C
Python
\u307C
Perl
\x{307C}
PHP
\x{307C}
Ruby
\u{307C}
Rust
\u{307C}
Go
\u307C

Web

CSS
\00307C
HtmlDecimal
ぼ
HtmlHexadecimal
ぼ
Url
%E3%81%BC

Code

MD5
106bc93a5e14904d622e7b207433656e
Sha1
7ebddc850724aa3031436e86288f0cf7b3c2c01a
Base64
44G8

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u307C';
console.log(char);  // Output: ぼ

Java:

char c = '\u307C';
System.out.println(c);  // Output: ぼ

JSON:

{"text": "\u307C"}  // Value: ぼ

Python:

char = '\u307C'
print(char)  # Output: ぼ

Perl:

my $char = "\x{307C}";
print $char;  # Output: ぼ

PHP:

$char = "\x{307C}";
echo $char;  // Output: ぼ

Ruby:

char = "\u{307C}"
puts char  # Output: ぼ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#12412;</p>  <!-- Display: ぼ -->

HTML Hexadecimal:

<p>HTML hex: &#x307C;</p>  <!-- Display: ぼ -->

URL Encoding:

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

Encodings

MD5:

106bc93a5e14904d622e7b207433656e

SHA1:

7ebddc850724aa3031436e86288f0cf7b3c2c01a

Base64:

44G8