Unicode Finder

"蹬" U+8E6C(CJK UNIFIED IDEOGRAPH-8E6C)

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

Programming

C
\u8E6C
JavaScript
\u8E6C
Java
\u8E6C
Json
\u8E6C
Python
\u8E6C
Perl
\x{8E6C}
PHP
\x{8E6C}
Ruby
\u{8E6C}
Rust
\u{8E6C}
Go
\u8E6C

Web

CSS
\008E6C
HtmlDecimal
蹬
HtmlHexadecimal
蹬
Url
%E8%B9%AC

Code

MD5
a8fd6561d28675e85a046f4e921f65c2
Sha1
16c03c90c38f3e59506f4cec9eff9db09c32df49
Base64
6Lms

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8E6C';
console.log(char);  // Output: 蹬

Java:

char c = '\u8E6C';
System.out.println(c);  // Output: 蹬

JSON:

{"text": "\u8E6C"}  // Value: 蹬

Python:

char = '\u8E6C'
print(char)  # Output: 蹬

Perl:

my $char = "\x{8E6C}";
print $char;  # Output: 蹬

PHP:

$char = "\x{8E6C}";
echo $char;  // Output: 蹬

Ruby:

char = "\u{8E6C}"
puts char  # Output: 蹬

Rust:

let c = '\u{8E6C}';
println!("{}", c);  // Output: 蹬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008E6C";  /* Display: 蹬 */
}

HTML Decimal:

<p>HTML decimal: &#36460;</p>  <!-- Display: 蹬 -->

HTML Hexadecimal:

<p>HTML hex: &#x8E6C;</p>  <!-- Display: 蹬 -->

URL Encoding:

// 蹬 URL encoding
https://unicodefinder.com/search.php?query=%E8%B9%AC

Encodings

MD5:

a8fd6561d28675e85a046f4e921f65c2

SHA1:

16c03c90c38f3e59506f4cec9eff9db09c32df49

Base64:

6Lms