Unicode Finder

"杞" U+675E(CJK UNIFIED IDEOGRAPH-675E)

U+675E
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-675E

Programming

C
\u675E
JavaScript
\u675E
Java
\u675E
Json
\u675E
Python
\u675E
Perl
\x{675E}
PHP
\x{675E}
Ruby
\u{675E}
Rust
\u{675E}
Go
\u675E

Web

CSS
\00675E
HtmlDecimal
杞
HtmlHexadecimal
杞
Url
%E6%9D%9E

Code

MD5
2144ffde1d41b84fc4d9df8b4cda953e
Sha1
b42f908622a7b0b60e08bdb9f261ebe5563c40c7
Base64
5p2e

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u675E';
console.log(char);  // Output: 杞

Java:

char c = '\u675E';
System.out.println(c);  // Output: 杞

JSON:

{"text": "\u675E"}  // Value: 杞

Python:

char = '\u675E'
print(char)  # Output: 杞

Perl:

my $char = "\x{675E}";
print $char;  # Output: 杞

PHP:

$char = "\x{675E}";
echo $char;  // Output: 杞

Ruby:

char = "\u{675E}"
puts char  # Output: 杞

Rust:

let c = '\u{675E}';
println!("{}", c);  // Output: 杞

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00675E";  /* Display: 杞 */
}

HTML Decimal:

<p>HTML decimal: &#26462;</p>  <!-- Display: 杞 -->

HTML Hexadecimal:

<p>HTML hex: &#x675E;</p>  <!-- Display: 杞 -->

URL Encoding:

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

Encodings

MD5:

2144ffde1d41b84fc4d9df8b4cda953e

SHA1:

b42f908622a7b0b60e08bdb9f261ebe5563c40c7

Base64:

5p2e