Unicode Finder

"蒕" U+8495(CJK UNIFIED IDEOGRAPH-8495)

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

Programming

C
\u8495
JavaScript
\u8495
Java
\u8495
Json
\u8495
Python
\u8495
Perl
\x{8495}
PHP
\x{8495}
Ruby
\u{8495}
Rust
\u{8495}
Go
\u8495

Web

CSS
\008495
HtmlDecimal
蒕
HtmlHexadecimal
蒕
Url
%E8%92%95

Code

MD5
c3aa3e87fd8a21970c6347c90f313e6a
Sha1
2a6e4d750b27186d7232abf9ac9b17c68933e3e9
Base64
6JKV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8495';
console.log(char);  // Output: 蒕

Java:

char c = '\u8495';
System.out.println(c);  // Output: 蒕

JSON:

{"text": "\u8495"}  // Value: 蒕

Python:

char = '\u8495'
print(char)  # Output: 蒕

Perl:

my $char = "\x{8495}";
print $char;  # Output: 蒕

PHP:

$char = "\x{8495}";
echo $char;  // Output: 蒕

Ruby:

char = "\u{8495}"
puts char  # Output: 蒕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008495";  /* Display: 蒕 */
}

HTML Decimal:

<p>HTML decimal: &#33941;</p>  <!-- Display: 蒕 -->

HTML Hexadecimal:

<p>HTML hex: &#x8495;</p>  <!-- Display: 蒕 -->

URL Encoding:

// 蒕 URL encoding
https://unicodefinder.com/search.php?query=%E8%92%95

Encodings

MD5:

c3aa3e87fd8a21970c6347c90f313e6a

SHA1:

2a6e4d750b27186d7232abf9ac9b17c68933e3e9

Base64:

6JKV