Unicode Finder

"杅" U+6745(CJK UNIFIED IDEOGRAPH-6745)

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

Programming

C
\u6745
JavaScript
\u6745
Java
\u6745
Json
\u6745
Python
\u6745
Perl
\x{6745}
PHP
\x{6745}
Ruby
\u{6745}
Rust
\u{6745}
Go
\u6745

Web

CSS
\006745
HtmlDecimal
杅
HtmlHexadecimal
杅
Url
%E6%9D%85

Code

MD5
2b03166e3d8aeb9d0d68d52773ed7dfd
Sha1
aac68e681b226a02706ca0d22a7f2f41df609a73
Base64
5p2F

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6745';
console.log(char);  // Output: 杅

Java:

char c = '\u6745';
System.out.println(c);  // Output: 杅

JSON:

{"text": "\u6745"}  // Value: 杅

Python:

char = '\u6745'
print(char)  # Output: 杅

Perl:

my $char = "\x{6745}";
print $char;  # Output: 杅

PHP:

$char = "\x{6745}";
echo $char;  // Output: 杅

Ruby:

char = "\u{6745}"
puts char  # Output: 杅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006745";  /* Display: 杅 */
}

HTML Decimal:

<p>HTML decimal: &#26437;</p>  <!-- Display: 杅 -->

HTML Hexadecimal:

<p>HTML hex: &#x6745;</p>  <!-- Display: 杅 -->

URL Encoding:

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

Encodings

MD5:

2b03166e3d8aeb9d0d68d52773ed7dfd

SHA1:

aac68e681b226a02706ca0d22a7f2f41df609a73

Base64:

5p2F