Unicode Finder

"杆" U+6746(CJK UNIFIED IDEOGRAPH-6746)

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

Programming

C
\u6746
JavaScript
\u6746
Java
\u6746
Json
\u6746
Python
\u6746
Perl
\x{6746}
PHP
\x{6746}
Ruby
\u{6746}
Rust
\u{6746}
Go
\u6746

Web

CSS
\006746
HtmlDecimal
杆
HtmlHexadecimal
杆
Url
%E6%9D%86

Code

MD5
5e3545682b090a65a1d067027425971e
Sha1
d4e9183d289347abca304df15293add21b78a5d4
Base64
5p2G

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6746';
console.log(char);  // Output: 杆

Java:

char c = '\u6746';
System.out.println(c);  // Output: 杆

JSON:

{"text": "\u6746"}  // Value: 杆

Python:

char = '\u6746'
print(char)  # Output: 杆

Perl:

my $char = "\x{6746}";
print $char;  # Output: 杆

PHP:

$char = "\x{6746}";
echo $char;  // Output: 杆

Ruby:

char = "\u{6746}"
puts char  # Output: 杆

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006746";  /* Display: 杆 */
}

HTML Decimal:

<p>HTML decimal: &#26438;</p>  <!-- Display: 杆 -->

HTML Hexadecimal:

<p>HTML hex: &#x6746;</p>  <!-- Display: 杆 -->

URL Encoding:

// 杆 URL encoding
https://unicodefinder.com/search.php?query=%E6%9D%86

Encodings

MD5:

5e3545682b090a65a1d067027425971e

SHA1:

d4e9183d289347abca304df15293add21b78a5d4

Base64:

5p2G