Unicode Finder

"撑" U+6491(CJK UNIFIED IDEOGRAPH-6491)

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

Programming

C
\u6491
JavaScript
\u6491
Java
\u6491
Json
\u6491
Python
\u6491
Perl
\x{6491}
PHP
\x{6491}
Ruby
\u{6491}
Rust
\u{6491}
Go
\u6491

Web

CSS
\006491
HtmlDecimal
撑
HtmlHexadecimal
撑
Url
%E6%92%91

Code

MD5
45ac58d1b9e4f723804a472cd7347c5a
Sha1
35ac47697a071c462d7fd94e49f80eebfd366d5d
Base64
5pKR

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6491';
console.log(char);  // Output: 撑

Java:

char c = '\u6491';
System.out.println(c);  // Output: 撑

JSON:

{"text": "\u6491"}  // Value: 撑

Python:

char = '\u6491'
print(char)  # Output: 撑

Perl:

my $char = "\x{6491}";
print $char;  # Output: 撑

PHP:

$char = "\x{6491}";
echo $char;  // Output: 撑

Ruby:

char = "\u{6491}"
puts char  # Output: 撑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006491";  /* Display: 撑 */
}

HTML Decimal:

<p>HTML decimal: &#25745;</p>  <!-- Display: 撑 -->

HTML Hexadecimal:

<p>HTML hex: &#x6491;</p>  <!-- Display: 撑 -->

URL Encoding:

// 撑 URL encoding
https://unicodefinder.com/search.php?query=%E6%92%91

Encodings

MD5:

45ac58d1b9e4f723804a472cd7347c5a

SHA1:

35ac47697a071c462d7fd94e49f80eebfd366d5d

Base64:

5pKR