Unicode Finder

"杈" U+6748(CJK UNIFIED IDEOGRAPH-6748)

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

Programming

C
\u6748
JavaScript
\u6748
Java
\u6748
Json
\u6748
Python
\u6748
Perl
\x{6748}
PHP
\x{6748}
Ruby
\u{6748}
Rust
\u{6748}
Go
\u6748

Web

CSS
\006748
HtmlDecimal
杈
HtmlHexadecimal
杈
Url
%E6%9D%88

Code

MD5
1aaa9e0aa721e57ece5317765b22a090
Sha1
673d948025b3567f695dcb1335920eae219e4adb
Base64
5p2I

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6748';
console.log(char);  // Output: 杈

Java:

char c = '\u6748';
System.out.println(c);  // Output: 杈

JSON:

{"text": "\u6748"}  // Value: 杈

Python:

char = '\u6748'
print(char)  # Output: 杈

Perl:

my $char = "\x{6748}";
print $char;  # Output: 杈

PHP:

$char = "\x{6748}";
echo $char;  // Output: 杈

Ruby:

char = "\u{6748}"
puts char  # Output: 杈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006748";  /* Display: 杈 */
}

HTML Decimal:

<p>HTML decimal: &#26440;</p>  <!-- Display: 杈 -->

HTML Hexadecimal:

<p>HTML hex: &#x6748;</p>  <!-- Display: 杈 -->

URL Encoding:

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

Encodings

MD5:

1aaa9e0aa721e57ece5317765b22a090

SHA1:

673d948025b3567f695dcb1335920eae219e4adb

Base64:

5p2I