Unicode Finder

"ボ" U+30DC(KATAKANA LETTER BO)

U+30DC
ブロック名
Katakana
名前
KATAKANA LETTER BO

Programming

C
\u30DC
JavaScript
\u30DC
Java
\u30DC
Json
\u30DC
Python
\u30DC
Perl
\x{30DC}
PHP
\x{30DC}
Ruby
\u{30DC}
Rust
\u{30DC}
Go
\u30DC

Web

CSS
\0030DC
HtmlDecimal
ボ
HtmlHexadecimal
ボ
Url
%E3%83%9C

Code

MD5
72d9f07bb52ae588338d4d00015cd25a
Sha1
c6be80a62e6177fd793a01c631197c0ae42c10eb
Base64
44Oc

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u30DC';
console.log(char);  // Output: ボ

Java:

char c = '\u30DC';
System.out.println(c);  // Output: ボ

JSON:

{"text": "\u30DC"}  // Value: ボ

Python:

char = '\u30DC'
print(char)  # Output: ボ

Perl:

my $char = "\x{30DC}";
print $char;  # Output: ボ

PHP:

$char = "\x{30DC}";
echo $char;  // Output: ボ

Ruby:

char = "\u{30DC}"
puts char  # Output: ボ

Rust:

let c = '\u{30DC}';
println!("{}", c);  // Output: ボ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0030DC";  /* Display: ボ */
}

HTML Decimal:

<p>HTML decimal: &#12508;</p>  <!-- Display: ボ -->

HTML Hexadecimal:

<p>HTML hex: &#x30DC;</p>  <!-- Display: ボ -->

URL Encoding:

// ボ URL encoding
https://unicodefinder.com/search.php?query=%E3%83%9C

Encodings

MD5:

72d9f07bb52ae588338d4d00015cd25a

SHA1:

c6be80a62e6177fd793a01c631197c0ae42c10eb

Base64:

44Oc