Unicode Finder

"褫" U+892B(CJK UNIFIED IDEOGRAPH-892B)

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

Programming

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

Web

CSS
\00892B
HtmlDecimal
褫
HtmlHexadecimal
褫
Url
%E8%A4%AB

Code

MD5
b602d34f7cc44ba1b22a443dada5ffa8
Sha1
725c01c663de6a4937a95a649c51921788b9f92c
Base64
6KSr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u892B';
console.log(char);  // Output: 褫

Java:

char c = '\u892B';
System.out.println(c);  // Output: 褫

JSON:

{"text": "\u892B"}  // Value: 褫

Python:

char = '\u892B'
print(char)  # Output: 褫

Perl:

my $char = "\x{892B}";
print $char;  # Output: 褫

PHP:

$char = "\x{892B}";
echo $char;  // Output: 褫

Ruby:

char = "\u{892B}"
puts char  # Output: 褫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35115;</p>  <!-- Display: 褫 -->

HTML Hexadecimal:

<p>HTML hex: &#x892B;</p>  <!-- Display: 褫 -->

URL Encoding:

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

Encodings

MD5:

b602d34f7cc44ba1b22a443dada5ffa8

SHA1:

725c01c663de6a4937a95a649c51921788b9f92c

Base64:

6KSr