Unicode Finder

"搁" U+6401(CJK UNIFIED IDEOGRAPH-6401)

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

Programming

C
\u6401
JavaScript
\u6401
Java
\u6401
Json
\u6401
Python
\u6401
Perl
\x{6401}
PHP
\x{6401}
Ruby
\u{6401}
Rust
\u{6401}
Go
\u6401

Web

CSS
\006401
HtmlDecimal
搁
HtmlHexadecimal
搁
Url
%E6%90%81

Code

MD5
e2eff293658e73c2b82dc6528e03986e
Sha1
9d90d985e635c0d00c71bd2788833a3af55da8c0
Base64
5pCB

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6401';
console.log(char);  // Output: 搁

Java:

char c = '\u6401';
System.out.println(c);  // Output: 搁

JSON:

{"text": "\u6401"}  // Value: 搁

Python:

char = '\u6401'
print(char)  # Output: 搁

Perl:

my $char = "\x{6401}";
print $char;  # Output: 搁

PHP:

$char = "\x{6401}";
echo $char;  // Output: 搁

Ruby:

char = "\u{6401}"
puts char  # Output: 搁

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006401";  /* Display: 搁 */
}

HTML Decimal:

<p>HTML decimal: &#25601;</p>  <!-- Display: 搁 -->

HTML Hexadecimal:

<p>HTML hex: &#x6401;</p>  <!-- Display: 搁 -->

URL Encoding:

// 搁 URL encoding
https://unicodefinder.com/search.php?query=%E6%90%81

Encodings

MD5:

e2eff293658e73c2b82dc6528e03986e

SHA1:

9d90d985e635c0d00c71bd2788833a3af55da8c0

Base64:

5pCB