Unicode Finder

"褰" U+8930(CJK UNIFIED IDEOGRAPH-8930)

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

Programming

C
\u8930
JavaScript
\u8930
Java
\u8930
Json
\u8930
Python
\u8930
Perl
\x{8930}
PHP
\x{8930}
Ruby
\u{8930}
Rust
\u{8930}
Go
\u8930

Web

CSS
\008930
HtmlDecimal
褰
HtmlHexadecimal
褰
Url
%E8%A4%B0

Code

MD5
a2d24eea0e31e672e7de1cd78194bc4e
Sha1
22c3483047773efbd9e2b35be094fc4fa0d4436e
Base64
6KSw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8930';
console.log(char);  // Output: 褰

Java:

char c = '\u8930';
System.out.println(c);  // Output: 褰

JSON:

{"text": "\u8930"}  // Value: 褰

Python:

char = '\u8930'
print(char)  # Output: 褰

Perl:

my $char = "\x{8930}";
print $char;  # Output: 褰

PHP:

$char = "\x{8930}";
echo $char;  // Output: 褰

Ruby:

char = "\u{8930}"
puts char  # Output: 褰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008930";  /* Display: 褰 */
}

HTML Decimal:

<p>HTML decimal: &#35120;</p>  <!-- Display: 褰 -->

HTML Hexadecimal:

<p>HTML hex: &#x8930;</p>  <!-- Display: 褰 -->

URL Encoding:

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

Encodings

MD5:

a2d24eea0e31e672e7de1cd78194bc4e

SHA1:

22c3483047773efbd9e2b35be094fc4fa0d4436e

Base64:

6KSw