Unicode Finder

"紣" U+7D23(CJK UNIFIED IDEOGRAPH-7D23)

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

Programming

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

Web

CSS
\007D23
HtmlDecimal
紣
HtmlHexadecimal
紣
Url
%E7%B4%A3

Code

MD5
cb5a162d26bacd445692167937d27024
Sha1
fe2b1981b6ead06ffefbc30ce2298537136b32d6
Base64
57Sj

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7D23';
console.log(char);  // Output: 紣

Java:

char c = '\u7D23';
System.out.println(c);  // Output: 紣

JSON:

{"text": "\u7D23"}  // Value: 紣

Python:

char = '\u7D23'
print(char)  # Output: 紣

Perl:

my $char = "\x{7D23}";
print $char;  # Output: 紣

PHP:

$char = "\x{7D23}";
echo $char;  // Output: 紣

Ruby:

char = "\u{7D23}"
puts char  # Output: 紣

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32035;</p>  <!-- Display: 紣 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D23;</p>  <!-- Display: 紣 -->

URL Encoding:

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

Encodings

MD5:

cb5a162d26bacd445692167937d27024

SHA1:

fe2b1981b6ead06ffefbc30ce2298537136b32d6

Base64:

57Sj