Unicode Finder

"褛" U+891B(CJK UNIFIED IDEOGRAPH-891B)

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

Programming

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

Web

CSS
\00891B
HtmlDecimal
褛
HtmlHexadecimal
褛
Url
%E8%A4%9B

Code

MD5
fea1408935d4cb34eefc4ac224560fad
Sha1
40fdfe656bf5335d2c883fe5f4ba3e32e7303373
Base64
6KSb

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u891B';
console.log(char);  // Output: 褛

Java:

char c = '\u891B';
System.out.println(c);  // Output: 褛

JSON:

{"text": "\u891B"}  // Value: 褛

Python:

char = '\u891B'
print(char)  # Output: 褛

Perl:

my $char = "\x{891B}";
print $char;  # Output: 褛

PHP:

$char = "\x{891B}";
echo $char;  // Output: 褛

Ruby:

char = "\u{891B}"
puts char  # Output: 褛

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35099;</p>  <!-- Display: 褛 -->

HTML Hexadecimal:

<p>HTML hex: &#x891B;</p>  <!-- Display: 褛 -->

URL Encoding:

// 褛 URL encoding
https://unicodefinder.com/search.php?query=%E8%A4%9B

Encodings

MD5:

fea1408935d4cb34eefc4ac224560fad

SHA1:

40fdfe656bf5335d2c883fe5f4ba3e32e7303373

Base64:

6KSb