Unicode Finder

"カ" U+30AB(KATAKANA LETTER KA)

U+30AB
ブロック名
Katakana
名前
KATAKANA LETTER KA

Programming

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

Web

CSS
\0030AB
HtmlDecimal
カ
HtmlHexadecimal
カ
Url
%E3%82%AB

Code

MD5
5e962fab704af6b1c22334f98c66be91
Sha1
00ed9f08e29eb116671277962320de58dcbd9b9a
Base64
44Kr

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u30AB';
console.log(char);  // Output: カ

Java:

char c = '\u30AB';
System.out.println(c);  // Output: カ

JSON:

{"text": "\u30AB"}  // Value: カ

Python:

char = '\u30AB'
print(char)  # Output: カ

Perl:

my $char = "\x{30AB}";
print $char;  # Output: カ

PHP:

$char = "\x{30AB}";
echo $char;  // Output: カ

Ruby:

char = "\u{30AB}"
puts char  # Output: カ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#12459;</p>  <!-- Display: カ -->

HTML Hexadecimal:

<p>HTML hex: &#x30AB;</p>  <!-- Display: カ -->

URL Encoding:

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

Encodings

MD5:

5e962fab704af6b1c22334f98c66be91

SHA1:

00ed9f08e29eb116671277962320de58dcbd9b9a

Base64:

44Kr