Unicode Finder

"掴" U+63B4(CJK UNIFIED IDEOGRAPH-63B4)

U+63B4
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-63B4

Programming

C
\u63B4
JavaScript
\u63B4
Java
\u63B4
Json
\u63B4
Python
\u63B4
Perl
\x{63B4}
PHP
\x{63B4}
Ruby
\u{63B4}
Rust
\u{63B4}
Go
\u63B4

Web

CSS
\0063B4
HtmlDecimal
掴
HtmlHexadecimal
掴
Url
%E6%8E%B4

Code

MD5
ecce7bedbeb18bd87b34d8bf1bc4f8e7
Sha1
ae69c8a91458821599be45be3597b128b5136df4
Base64
5o60

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u63B4';
console.log(char);  // Output: 掴

Java:

char c = '\u63B4';
System.out.println(c);  // Output: 掴

JSON:

{"text": "\u63B4"}  // Value: 掴

Python:

char = '\u63B4'
print(char)  # Output: 掴

Perl:

my $char = "\x{63B4}";
print $char;  # Output: 掴

PHP:

$char = "\x{63B4}";
echo $char;  // Output: 掴

Ruby:

char = "\u{63B4}"
puts char  # Output: 掴

Rust:

let c = '\u{63B4}';
println!("{}", c);  // Output: 掴

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0063B4";  /* Display: 掴 */
}

HTML Decimal:

<p>HTML decimal: &#25524;</p>  <!-- Display: 掴 -->

HTML Hexadecimal:

<p>HTML hex: &#x63B4;</p>  <!-- Display: 掴 -->

URL Encoding:

// 掴 URL encoding
https://unicodefinder.com/search.php?query=%E6%8E%B4

Encodings

MD5:

ecce7bedbeb18bd87b34d8bf1bc4f8e7

SHA1:

ae69c8a91458821599be45be3597b128b5136df4

Base64:

5o60