Unicode Finder

"蔅" U+8505(CJK UNIFIED IDEOGRAPH-8505)

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

Programming

C
\u8505
JavaScript
\u8505
Java
\u8505
Json
\u8505
Python
\u8505
Perl
\x{8505}
PHP
\x{8505}
Ruby
\u{8505}
Rust
\u{8505}
Go
\u8505

Web

CSS
\008505
HtmlDecimal
蔅
HtmlHexadecimal
蔅
Url
%E8%94%85

Code

MD5
2a74e3a933f8d4d14219497fd0f7040a
Sha1
3a67a7e291c100c5253f2e684b7e5dd15dd5cab3
Base64
6JSF

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8505';
console.log(char);  // Output: 蔅

Java:

char c = '\u8505';
System.out.println(c);  // Output: 蔅

JSON:

{"text": "\u8505"}  // Value: 蔅

Python:

char = '\u8505'
print(char)  # Output: 蔅

Perl:

my $char = "\x{8505}";
print $char;  # Output: 蔅

PHP:

$char = "\x{8505}";
echo $char;  // Output: 蔅

Ruby:

char = "\u{8505}"
puts char  # Output: 蔅

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008505";  /* Display: 蔅 */
}

HTML Decimal:

<p>HTML decimal: &#34053;</p>  <!-- Display: 蔅 -->

HTML Hexadecimal:

<p>HTML hex: &#x8505;</p>  <!-- Display: 蔅 -->

URL Encoding:

// 蔅 URL encoding
https://unicodefinder.com/search.php?query=%E8%94%85

Encodings

MD5:

2a74e3a933f8d4d14219497fd0f7040a

SHA1:

3a67a7e291c100c5253f2e684b7e5dd15dd5cab3

Base64:

6JSF