Unicode Finder

"褀" U+8900(CJK UNIFIED IDEOGRAPH-8900)

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

Programming

C
\u8900
JavaScript
\u8900
Java
\u8900
Json
\u8900
Python
\u8900
Perl
\x{8900}
PHP
\x{8900}
Ruby
\u{8900}
Rust
\u{8900}
Go
\u8900

Web

CSS
\008900
HtmlDecimal
褀
HtmlHexadecimal
褀
Url
%E8%A4%80

Code

MD5
42f4a7b3e0ee513fc88297fa4b69409a
Sha1
76acf6d9a652988bd2b6898f7880c80a4f2faa97
Base64
6KSA

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8900';
console.log(char);  // Output: 褀

Java:

char c = '\u8900';
System.out.println(c);  // Output: 褀

JSON:

{"text": "\u8900"}  // Value: 褀

Python:

char = '\u8900'
print(char)  # Output: 褀

Perl:

my $char = "\x{8900}";
print $char;  # Output: 褀

PHP:

$char = "\x{8900}";
echo $char;  // Output: 褀

Ruby:

char = "\u{8900}"
puts char  # Output: 褀

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008900";  /* Display: 褀 */
}

HTML Decimal:

<p>HTML decimal: &#35072;</p>  <!-- Display: 褀 -->

HTML Hexadecimal:

<p>HTML hex: &#x8900;</p>  <!-- Display: 褀 -->

URL Encoding:

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

Encodings

MD5:

42f4a7b3e0ee513fc88297fa4b69409a

SHA1:

76acf6d9a652988bd2b6898f7880c80a4f2faa97

Base64:

6KSA