Unicode Finder

"捱" U+6371(CJK UNIFIED IDEOGRAPH-6371)

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

Programming

C
\u6371
JavaScript
\u6371
Java
\u6371
Json
\u6371
Python
\u6371
Perl
\x{6371}
PHP
\x{6371}
Ruby
\u{6371}
Rust
\u{6371}
Go
\u6371

Web

CSS
\006371
HtmlDecimal
捱
HtmlHexadecimal
捱
Url
%E6%8D%B1

Code

MD5
3537041031b79856b61bebfc24f2c545
Sha1
60a24bdf5ea688a365a20629417922cbd61dda77
Base64
5o2x

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6371';
console.log(char);  // Output: 捱

Java:

char c = '\u6371';
System.out.println(c);  // Output: 捱

JSON:

{"text": "\u6371"}  // Value: 捱

Python:

char = '\u6371'
print(char)  # Output: 捱

Perl:

my $char = "\x{6371}";
print $char;  # Output: 捱

PHP:

$char = "\x{6371}";
echo $char;  // Output: 捱

Ruby:

char = "\u{6371}"
puts char  # Output: 捱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006371";  /* Display: 捱 */
}

HTML Decimal:

<p>HTML decimal: &#25457;</p>  <!-- Display: 捱 -->

HTML Hexadecimal:

<p>HTML hex: &#x6371;</p>  <!-- Display: 捱 -->

URL Encoding:

// 捱 URL encoding
https://unicodefinder.com/search.php?query=%E6%8D%B1

Encodings

MD5:

3537041031b79856b61bebfc24f2c545

SHA1:

60a24bdf5ea688a365a20629417922cbd61dda77

Base64:

5o2x