Unicode Finder

"褳" U+8933(CJK UNIFIED IDEOGRAPH-8933)

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

Programming

C
\u8933
JavaScript
\u8933
Java
\u8933
Json
\u8933
Python
\u8933
Perl
\x{8933}
PHP
\x{8933}
Ruby
\u{8933}
Rust
\u{8933}
Go
\u8933

Web

CSS
\008933
HtmlDecimal
褳
HtmlHexadecimal
褳
Url
%E8%A4%B3

Code

MD5
4ad6038a527f0251a7bc3f92746ff4e1
Sha1
1ea6a496588fff16b559c8540e7d8ebd5ce0173a
Base64
6KSz

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8933';
console.log(char);  // Output: 褳

Java:

char c = '\u8933';
System.out.println(c);  // Output: 褳

JSON:

{"text": "\u8933"}  // Value: 褳

Python:

char = '\u8933'
print(char)  # Output: 褳

Perl:

my $char = "\x{8933}";
print $char;  # Output: 褳

PHP:

$char = "\x{8933}";
echo $char;  // Output: 褳

Ruby:

char = "\u{8933}"
puts char  # Output: 褳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008933";  /* Display: 褳 */
}

HTML Decimal:

<p>HTML decimal: &#35123;</p>  <!-- Display: 褳 -->

HTML Hexadecimal:

<p>HTML hex: &#x8933;</p>  <!-- Display: 褳 -->

URL Encoding:

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

Encodings

MD5:

4ad6038a527f0251a7bc3f92746ff4e1

SHA1:

1ea6a496588fff16b559c8540e7d8ebd5ce0173a

Base64:

6KSz