Unicode Finder

"紦" U+7D26(CJK UNIFIED IDEOGRAPH-7D26)

U+7D26
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7D26

Programming

C
\u7D26
JavaScript
\u7D26
Java
\u7D26
Json
\u7D26
Python
\u7D26
Perl
\x{7D26}
PHP
\x{7D26}
Ruby
\u{7D26}
Rust
\u{7D26}
Go
\u7D26

Web

CSS
\007D26
HtmlDecimal
紦
HtmlHexadecimal
紦
Url
%E7%B4%A6

Code

MD5
fba8d96424de19a9f3ad77715de2e633
Sha1
9f2ad1f7c315ca3897c1b4228ee98c197027b42d
Base64
57Sm

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7D26';
console.log(char);  // Output: 紦

Java:

char c = '\u7D26';
System.out.println(c);  // Output: 紦

JSON:

{"text": "\u7D26"}  // Value: 紦

Python:

char = '\u7D26'
print(char)  # Output: 紦

Perl:

my $char = "\x{7D26}";
print $char;  # Output: 紦

PHP:

$char = "\x{7D26}";
echo $char;  // Output: 紦

Ruby:

char = "\u{7D26}"
puts char  # Output: 紦

Rust:

let c = '\u{7D26}';
println!("{}", c);  // Output: 紦

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007D26";  /* Display: 紦 */
}

HTML Decimal:

<p>HTML decimal: &#32038;</p>  <!-- Display: 紦 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D26;</p>  <!-- Display: 紦 -->

URL Encoding:

// 紦 URL encoding
https://unicodefinder.com/search.php?query=%E7%B4%A6

Encodings

MD5:

fba8d96424de19a9f3ad77715de2e633

SHA1:

9f2ad1f7c315ca3897c1b4228ee98c197027b42d

Base64:

57Sm