Unicode Finder

"頵" U+9835(CJK UNIFIED IDEOGRAPH-9835)

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

Programming

C
\u9835
JavaScript
\u9835
Java
\u9835
Json
\u9835
Python
\u9835
Perl
\x{9835}
PHP
\x{9835}
Ruby
\u{9835}
Rust
\u{9835}
Go
\u9835

Web

CSS
\009835
HtmlDecimal
頵
HtmlHexadecimal
頵
Url
%E9%A0%B5

Code

MD5
ddf3bb6da115404683bdbaaa2ee2ddc5
Sha1
583c211d0bbe9920c41798f4b81c830dd5689387
Base64
6aC1

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u9835';
console.log(char);  // Output: 頵

Java:

char c = '\u9835';
System.out.println(c);  // Output: 頵

JSON:

{"text": "\u9835"}  // Value: 頵

Python:

char = '\u9835'
print(char)  # Output: 頵

Perl:

my $char = "\x{9835}";
print $char;  # Output: 頵

PHP:

$char = "\x{9835}";
echo $char;  // Output: 頵

Ruby:

char = "\u{9835}"
puts char  # Output: 頵

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009835";  /* Display: 頵 */
}

HTML Decimal:

<p>HTML decimal: &#38965;</p>  <!-- Display: 頵 -->

HTML Hexadecimal:

<p>HTML hex: &#x9835;</p>  <!-- Display: 頵 -->

URL Encoding:

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

Encodings

MD5:

ddf3bb6da115404683bdbaaa2ee2ddc5

SHA1:

583c211d0bbe9920c41798f4b81c830dd5689387

Base64:

6aC1