Unicode Finder

"タ" U+30BF(KATAKANA LETTER TA)

U+30BF
ブロック名
Katakana
名前
KATAKANA LETTER TA

Programming

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

Web

CSS
\0030BF
HtmlDecimal
タ
HtmlHexadecimal
タ
Url
%E3%82%BF

Code

MD5
3488717f69bbfea37a32383f84a4ec7f
Sha1
056cfad24eb23aac05d15c4b8ae29ea746c7ee82
Base64
44K/

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u30BF';
console.log(char);  // Output: タ

Java:

char c = '\u30BF';
System.out.println(c);  // Output: タ

JSON:

{"text": "\u30BF"}  // Value: タ

Python:

char = '\u30BF'
print(char)  # Output: タ

Perl:

my $char = "\x{30BF}";
print $char;  # Output: タ

PHP:

$char = "\x{30BF}";
echo $char;  // Output: タ

Ruby:

char = "\u{30BF}"
puts char  # Output: タ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#12479;</p>  <!-- Display: タ -->

HTML Hexadecimal:

<p>HTML hex: &#x30BF;</p>  <!-- Display: タ -->

URL Encoding:

// タ URL encoding
https://unicodefinder.com/search.php?query=%E3%82%BF

Encodings

MD5:

3488717f69bbfea37a32383f84a4ec7f

SHA1:

056cfad24eb23aac05d15c4b8ae29ea746c7ee82

Base64:

44K/