Unicode Finder

"ン" U+30F3(KATAKANA LETTER N)

U+30F3
ブロック名
Katakana
名前
KATAKANA LETTER N

Programming

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

Web

CSS
\0030F3
HtmlDecimal
ン
HtmlHexadecimal
ン
Url
%E3%83%B3

Code

MD5
f5b937166da234ea47943f39e838057f
Sha1
6ad7ee833add307eed08e8a1c513cd82d3f03380
Base64
44Oz

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u30F3';
console.log(char);  // Output: ン

Java:

char c = '\u30F3';
System.out.println(c);  // Output: ン

JSON:

{"text": "\u30F3"}  // Value: ン

Python:

char = '\u30F3'
print(char)  # Output: ン

Perl:

my $char = "\x{30F3}";
print $char;  # Output: ン

PHP:

$char = "\x{30F3}";
echo $char;  // Output: ン

Ruby:

char = "\u{30F3}"
puts char  # Output: ン

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#12531;</p>  <!-- Display: ン -->

HTML Hexadecimal:

<p>HTML hex: &#x30F3;</p>  <!-- Display: ン -->

URL Encoding:

// ン URL encoding
https://unicodefinder.com/search.php?query=%E3%83%B3

Encodings

MD5:

f5b937166da234ea47943f39e838057f

SHA1:

6ad7ee833add307eed08e8a1c513cd82d3f03380

Base64:

44Oz