Unicode Finder

"匠" U+5320(CJK UNIFIED IDEOGRAPH-5320)

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

Programming

C
\u5320
JavaScript
\u5320
Java
\u5320
Json
\u5320
Python
\u5320
Perl
\x{5320}
PHP
\x{5320}
Ruby
\u{5320}
Rust
\u{5320}
Go
\u5320

Web

CSS
\005320
HtmlDecimal
匠
HtmlHexadecimal
匠
Url
%E5%8C%A0

Code

MD5
8f735971a47afe1ed7fa4174f081767d
Sha1
414f66c99ba17d16d42a7151e73b5b977d2f55ed
Base64
5Yyg

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5320';
console.log(char);  // Output: 匠

Java:

char c = '\u5320';
System.out.println(c);  // Output: 匠

JSON:

{"text": "\u5320"}  // Value: 匠

Python:

char = '\u5320'
print(char)  # Output: 匠

Perl:

my $char = "\x{5320}";
print $char;  # Output: 匠

PHP:

$char = "\x{5320}";
echo $char;  // Output: 匠

Ruby:

char = "\u{5320}"
puts char  # Output: 匠

Rust:

let c = '\u{5320}';
println!("{}", c);  // Output: 匠

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005320";  /* Display: 匠 */
}

HTML Decimal:

<p>HTML decimal: &#21280;</p>  <!-- Display: 匠 -->

HTML Hexadecimal:

<p>HTML hex: &#x5320;</p>  <!-- Display: 匠 -->

URL Encoding:

// 匠 URL encoding
https://unicodefinder.com/search.php?query=%E5%8C%A0

Encodings

MD5:

8f735971a47afe1ed7fa4174f081767d

SHA1:

414f66c99ba17d16d42a7151e73b5b977d2f55ed

Base64:

5Yyg