Unicode Finder

"綫" U+7DAB(CJK UNIFIED IDEOGRAPH-7DAB)

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

Programming

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

Web

CSS
\007DAB
HtmlDecimal
綫
HtmlHexadecimal
綫
Url
%E7%B6%AB

Code

MD5
1fd376d33cd7ffb35d42382779c90ff1
Sha1
3e1caf88d5375116edd6f18c9bd1a3ef87e9c807
Base64
57ar

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7DAB';
console.log(char);  // Output: 綫

Java:

char c = '\u7DAB';
System.out.println(c);  // Output: 綫

JSON:

{"text": "\u7DAB"}  // Value: 綫

Python:

char = '\u7DAB'
print(char)  # Output: 綫

Perl:

my $char = "\x{7DAB}";
print $char;  # Output: 綫

PHP:

$char = "\x{7DAB}";
echo $char;  // Output: 綫

Ruby:

char = "\u{7DAB}"
puts char  # Output: 綫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32171;</p>  <!-- Display: 綫 -->

HTML Hexadecimal:

<p>HTML hex: &#x7DAB;</p>  <!-- Display: 綫 -->

URL Encoding:

// 綫 URL encoding
https://unicodefinder.com/search.php?query=%E7%B6%AB

Encodings

MD5:

1fd376d33cd7ffb35d42382779c90ff1

SHA1:

3e1caf88d5375116edd6f18c9bd1a3ef87e9c807

Base64:

57ar