Unicode Finder

"褱" U+8931(CJK UNIFIED IDEOGRAPH-8931)

U+8931
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8931

Programming

C
\u8931
JavaScript
\u8931
Java
\u8931
Json
\u8931
Python
\u8931
Perl
\x{8931}
PHP
\x{8931}
Ruby
\u{8931}
Rust
\u{8931}
Go
\u8931

Web

CSS
\008931
HtmlDecimal
褱
HtmlHexadecimal
褱
Url
%E8%A4%B1

Code

MD5
52073e35ccb7fbeab7d1bd4fdba53dc7
Sha1
d89edeb419c3c06c085382bd559f5febeb6baea9
Base64
6KSx

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8931';
console.log(char);  // Output: 褱

Java:

char c = '\u8931';
System.out.println(c);  // Output: 褱

JSON:

{"text": "\u8931"}  // Value: 褱

Python:

char = '\u8931'
print(char)  # Output: 褱

Perl:

my $char = "\x{8931}";
print $char;  # Output: 褱

PHP:

$char = "\x{8931}";
echo $char;  // Output: 褱

Ruby:

char = "\u{8931}"
puts char  # Output: 褱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008931";  /* Display: 褱 */
}

HTML Decimal:

<p>HTML decimal: &#35121;</p>  <!-- Display: 褱 -->

HTML Hexadecimal:

<p>HTML hex: &#x8931;</p>  <!-- Display: 褱 -->

URL Encoding:

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

Encodings

MD5:

52073e35ccb7fbeab7d1bd4fdba53dc7

SHA1:

d89edeb419c3c06c085382bd559f5febeb6baea9

Base64:

6KSx