Unicode Finder

"ツ" U+30C4(KATAKANA LETTER TU)

U+30C4
ブロック名
Katakana
名前
KATAKANA LETTER TU

Programming

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

Web

CSS
\0030C4
HtmlDecimal
ツ
HtmlHexadecimal
ツ
Url
%E3%83%84

Code

MD5
c3b5e4de19d4111ae1d682b86e921671
Sha1
ee5fe18a7c7601f5c7b5345d656fe4b02d2673b1
Base64
44OE

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u30C4';
console.log(char);  // Output: ツ

Java:

char c = '\u30C4';
System.out.println(c);  // Output: ツ

JSON:

{"text": "\u30C4"}  // Value: ツ

Python:

char = '\u30C4'
print(char)  # Output: ツ

Perl:

my $char = "\x{30C4}";
print $char;  # Output: ツ

PHP:

$char = "\x{30C4}";
echo $char;  // Output: ツ

Ruby:

char = "\u{30C4}"
puts char  # Output: ツ

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#12484;</p>  <!-- Display: ツ -->

HTML Hexadecimal:

<p>HTML hex: &#x30C4;</p>  <!-- Display: ツ -->

URL Encoding:

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

Encodings

MD5:

c3b5e4de19d4111ae1d682b86e921671

SHA1:

ee5fe18a7c7601f5c7b5345d656fe4b02d2673b1

Base64:

44OE