Unicode Finder

"杉" U+6749(CJK UNIFIED IDEOGRAPH-6749)

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

Programming

C
\u6749
JavaScript
\u6749
Java
\u6749
Json
\u6749
Python
\u6749
Perl
\x{6749}
PHP
\x{6749}
Ruby
\u{6749}
Rust
\u{6749}
Go
\u6749

Web

CSS
\006749
HtmlDecimal
杉
HtmlHexadecimal
杉
Url
%E6%9D%89

Code

MD5
7ec519ef3f5c9e63083242e22f0d3db8
Sha1
d8e69f31cde65f41f98202b342ddcd7b63af0181
Base64
5p2J

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6749';
console.log(char);  // Output: 杉

Java:

char c = '\u6749';
System.out.println(c);  // Output: 杉

JSON:

{"text": "\u6749"}  // Value: 杉

Python:

char = '\u6749'
print(char)  # Output: 杉

Perl:

my $char = "\x{6749}";
print $char;  # Output: 杉

PHP:

$char = "\x{6749}";
echo $char;  // Output: 杉

Ruby:

char = "\u{6749}"
puts char  # Output: 杉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006749";  /* Display: 杉 */
}

HTML Decimal:

<p>HTML decimal: &#26441;</p>  <!-- Display: 杉 -->

HTML Hexadecimal:

<p>HTML hex: &#x6749;</p>  <!-- Display: 杉 -->

URL Encoding:

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

Encodings

MD5:

7ec519ef3f5c9e63083242e22f0d3db8

SHA1:

d8e69f31cde65f41f98202b342ddcd7b63af0181

Base64:

5p2J