Unicode Finder

"蘱" U+8631(CJK UNIFIED IDEOGRAPH-8631)

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

Programming

C
\u8631
JavaScript
\u8631
Java
\u8631
Json
\u8631
Python
\u8631
Perl
\x{8631}
PHP
\x{8631}
Ruby
\u{8631}
Rust
\u{8631}
Go
\u8631

Web

CSS
\008631
HtmlDecimal
蘱
HtmlHexadecimal
蘱
Url
%E8%98%B1

Code

MD5
16aa69cb766312998ee09a715806b8be
Sha1
0f3db3c50c36cf400c764a90ba24babe1e81d47e
Base64
6Jix

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8631';
console.log(char);  // Output: 蘱

Java:

char c = '\u8631';
System.out.println(c);  // Output: 蘱

JSON:

{"text": "\u8631"}  // Value: 蘱

Python:

char = '\u8631'
print(char)  # Output: 蘱

Perl:

my $char = "\x{8631}";
print $char;  # Output: 蘱

PHP:

$char = "\x{8631}";
echo $char;  // Output: 蘱

Ruby:

char = "\u{8631}"
puts char  # Output: 蘱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008631";  /* Display: 蘱 */
}

HTML Decimal:

<p>HTML decimal: &#34353;</p>  <!-- Display: 蘱 -->

HTML Hexadecimal:

<p>HTML hex: &#x8631;</p>  <!-- Display: 蘱 -->

URL Encoding:

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

Encodings

MD5:

16aa69cb766312998ee09a715806b8be

SHA1:

0f3db3c50c36cf400c764a90ba24babe1e81d47e

Base64:

6Jix