Unicode Finder

"斋" U+658B(CJK UNIFIED IDEOGRAPH-658B)

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

Programming

C
\u658B
JavaScript
\u658B
Java
\u658B
Json
\u658B
Python
\u658B
Perl
\x{658B}
PHP
\x{658B}
Ruby
\u{658B}
Rust
\u{658B}
Go
\u658B

Web

CSS
\00658B
HtmlDecimal
斋
HtmlHexadecimal
斋
Url
%E6%96%8B

Code

MD5
93a9b027bbdfd68f2497cea93554177d
Sha1
bdc72a250427569350f2f4fed020354a6c51f0b4
Base64
5paL

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u658B';
console.log(char);  // Output: 斋

Java:

char c = '\u658B';
System.out.println(c);  // Output: 斋

JSON:

{"text": "\u658B"}  // Value: 斋

Python:

char = '\u658B'
print(char)  # Output: 斋

Perl:

my $char = "\x{658B}";
print $char;  # Output: 斋

PHP:

$char = "\x{658B}";
echo $char;  // Output: 斋

Ruby:

char = "\u{658B}"
puts char  # Output: 斋

Rust:

let c = '\u{658B}';
println!("{}", c);  // Output: 斋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00658B";  /* Display: 斋 */
}

HTML Decimal:

<p>HTML decimal: &#25995;</p>  <!-- Display: 斋 -->

HTML Hexadecimal:

<p>HTML hex: &#x658B;</p>  <!-- Display: 斋 -->

URL Encoding:

// 斋 URL encoding
https://unicodefinder.com/search.php?query=%E6%96%8B

Encodings

MD5:

93a9b027bbdfd68f2497cea93554177d

SHA1:

bdc72a250427569350f2f4fed020354a6c51f0b4

Base64:

5paL