Unicode Finder

"蔑" U+8511(CJK UNIFIED IDEOGRAPH-8511)

U+8511
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-8511

Programming

C
\u8511
JavaScript
\u8511
Java
\u8511
Json
\u8511
Python
\u8511
Perl
\x{8511}
PHP
\x{8511}
Ruby
\u{8511}
Rust
\u{8511}
Go
\u8511

Web

CSS
\008511
HtmlDecimal
蔑
HtmlHexadecimal
蔑
Url
%E8%94%91

Code

MD5
e429012921485147d72c82f2898f6be6
Sha1
468972b61557e2eb4dcc98429482cc5e48eeb6fc
Base64
6JSR

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u8511';
console.log(char);  // Output: 蔑

Java:

char c = '\u8511';
System.out.println(c);  // Output: 蔑

JSON:

{"text": "\u8511"}  // Value: 蔑

Python:

char = '\u8511'
print(char)  # Output: 蔑

Perl:

my $char = "\x{8511}";
print $char;  # Output: 蔑

PHP:

$char = "\x{8511}";
echo $char;  // Output: 蔑

Ruby:

char = "\u{8511}"
puts char  # Output: 蔑

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008511";  /* Display: 蔑 */
}

HTML Decimal:

<p>HTML decimal: &#34065;</p>  <!-- Display: 蔑 -->

HTML Hexadecimal:

<p>HTML hex: &#x8511;</p>  <!-- Display: 蔑 -->

URL Encoding:

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

Encodings

MD5:

e429012921485147d72c82f2898f6be6

SHA1:

468972b61557e2eb4dcc98429482cc5e48eeb6fc

Base64:

6JSR