Unicode Finder

"斉" U+6589(CJK UNIFIED IDEOGRAPH-6589)

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

Programming

C
\u6589
JavaScript
\u6589
Java
\u6589
Json
\u6589
Python
\u6589
Perl
\x{6589}
PHP
\x{6589}
Ruby
\u{6589}
Rust
\u{6589}
Go
\u6589

Web

CSS
\006589
HtmlDecimal
斉
HtmlHexadecimal
斉
Url
%E6%96%89

Code

MD5
f854582229d41ba0260187df692b5bea
Sha1
3652977ca84f2556212d5c83bc7a6e1e16e77ed2
Base64
5paJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6589';
console.log(char);  // Output: 斉

Java:

char c = '\u6589';
System.out.println(c);  // Output: 斉

JSON:

{"text": "\u6589"}  // Value: 斉

Python:

char = '\u6589'
print(char)  # Output: 斉

Perl:

my $char = "\x{6589}";
print $char;  # Output: 斉

PHP:

$char = "\x{6589}";
echo $char;  // Output: 斉

Ruby:

char = "\u{6589}"
puts char  # Output: 斉

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006589";  /* Display: 斉 */
}

HTML Decimal:

<p>HTML decimal: &#25993;</p>  <!-- Display: 斉 -->

HTML Hexadecimal:

<p>HTML hex: &#x6589;</p>  <!-- Display: 斉 -->

URL Encoding:

// 斉 URL encoding
https://unicodefinder.com/search.php?query=%E6%96%89

Encodings

MD5:

f854582229d41ba0260187df692b5bea

SHA1:

3652977ca84f2556212d5c83bc7a6e1e16e77ed2

Base64:

5paJ