Unicode Finder

"須" U+9808(CJK UNIFIED IDEOGRAPH-9808)

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

Programming

C
\u9808
JavaScript
\u9808
Java
\u9808
Json
\u9808
Python
\u9808
Perl
\x{9808}
PHP
\x{9808}
Ruby
\u{9808}
Rust
\u{9808}
Go
\u9808

Web

CSS
\009808
HtmlDecimal
須
HtmlHexadecimal
須
Url
%E9%A0%88

Code

MD5
6f83fdc031af0cdefb60ee0eabfe6a65
Sha1
127b67ffda1909f4b7ad8538c22c2301aad2a5c1
Base64
6aCI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9808';
console.log(char);  // Output: 須

Java:

char c = '\u9808';
System.out.println(c);  // Output: 須

JSON:

{"text": "\u9808"}  // Value: 須

Python:

char = '\u9808'
print(char)  # Output: 須

Perl:

my $char = "\x{9808}";
print $char;  # Output: 須

PHP:

$char = "\x{9808}";
echo $char;  // Output: 須

Ruby:

char = "\u{9808}"
puts char  # Output: 須

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009808";  /* Display: 須 */
}

HTML Decimal:

<p>HTML decimal: &#38920;</p>  <!-- Display: 須 -->

HTML Hexadecimal:

<p>HTML hex: &#x9808;</p>  <!-- Display: 須 -->

URL Encoding:

// 須 URL encoding
https://unicodefinder.com/search.php?query=%E9%A0%88

Encodings

MD5:

6f83fdc031af0cdefb60ee0eabfe6a65

SHA1:

127b67ffda1909f4b7ad8538c22c2301aad2a5c1

Base64:

6aCI