Unicode Finder

"褬" U+892C(CJK UNIFIED IDEOGRAPH-892C)

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

Programming

C
\u892C
JavaScript
\u892C
Java
\u892C
Json
\u892C
Python
\u892C
Perl
\x{892C}
PHP
\x{892C}
Ruby
\u{892C}
Rust
\u{892C}
Go
\u892C

Web

CSS
\00892C
HtmlDecimal
褬
HtmlHexadecimal
褬
Url
%E8%A4%AC

Code

MD5
10c68280a9d681b10938d61cff2f0f4f
Sha1
e19f52c64f325dbae6f4bb16b4b07d847713d728
Base64
6KSs

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u892C';
console.log(char);  // Output: 褬

Java:

char c = '\u892C';
System.out.println(c);  // Output: 褬

JSON:

{"text": "\u892C"}  // Value: 褬

Python:

char = '\u892C'
print(char)  # Output: 褬

Perl:

my $char = "\x{892C}";
print $char;  # Output: 褬

PHP:

$char = "\x{892C}";
echo $char;  // Output: 褬

Ruby:

char = "\u{892C}"
puts char  # Output: 褬

Rust:

let c = '\u{892C}';
println!("{}", c);  // Output: 褬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00892C";  /* Display: 褬 */
}

HTML Decimal:

<p>HTML decimal: &#35116;</p>  <!-- Display: 褬 -->

HTML Hexadecimal:

<p>HTML hex: &#x892C;</p>  <!-- Display: 褬 -->

URL Encoding:

// 褬 URL encoding
https://unicodefinder.com/search.php?query=%E8%A4%AC

Encodings

MD5:

10c68280a9d681b10938d61cff2f0f4f

SHA1:

e19f52c64f325dbae6f4bb16b4b07d847713d728

Base64:

6KSs