Unicode Finder

"閲" U+95B2(CJK UNIFIED IDEOGRAPH-95B2)

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

Programming

C
\u95B2
JavaScript
\u95B2
Java
\u95B2
Json
\u95B2
Python
\u95B2
Perl
\x{95B2}
PHP
\x{95B2}
Ruby
\u{95B2}
Rust
\u{95B2}
Go
\u95B2

Web

CSS
\0095B2
HtmlDecimal
閲
HtmlHexadecimal
閲
Url
%E9%96%B2

Code

MD5
8810d9cc3c7a6fd531c34a9ed6f2bbb7
Sha1
887ae70056a54a53cd9b95591fc09be3e5d7127f
Base64
6Zay

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u95B2';
console.log(char);  // Output: 閲

Java:

char c = '\u95B2';
System.out.println(c);  // Output: 閲

JSON:

{"text": "\u95B2"}  // Value: 閲

Python:

char = '\u95B2'
print(char)  # Output: 閲

Perl:

my $char = "\x{95B2}";
print $char;  # Output: 閲

PHP:

$char = "\x{95B2}";
echo $char;  // Output: 閲

Ruby:

char = "\u{95B2}"
puts char  # Output: 閲

Rust:

let c = '\u{95B2}';
println!("{}", c);  // Output: 閲

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0095B2";  /* Display: 閲 */
}

HTML Decimal:

<p>HTML decimal: &#38322;</p>  <!-- Display: 閲 -->

HTML Hexadecimal:

<p>HTML hex: &#x95B2;</p>  <!-- Display: 閲 -->

URL Encoding:

// 閲 URL encoding
https://unicodefinder.com/search.php?query=%E9%96%B2

Encodings

MD5:

8810d9cc3c7a6fd531c34a9ed6f2bbb7

SHA1:

887ae70056a54a53cd9b95591fc09be3e5d7127f

Base64:

6Zay