Unicode Finder

"蹳" U+8E73(CJK UNIFIED IDEOGRAPH-8E73)

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

Programming

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

Web

CSS
\008E73
HtmlDecimal
蹳
HtmlHexadecimal
蹳
Url
%E8%B9%B3

Code

MD5
e320e9e42eec7eaf894c95acd77ed362
Sha1
aefcc957f77bd7b6df35ad1d29b6491da4b5c862
Base64
6Lmz

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8E73';
console.log(char);  // Output: 蹳

Java:

char c = '\u8E73';
System.out.println(c);  // Output: 蹳

JSON:

{"text": "\u8E73"}  // Value: 蹳

Python:

char = '\u8E73'
print(char)  # Output: 蹳

Perl:

my $char = "\x{8E73}";
print $char;  # Output: 蹳

PHP:

$char = "\x{8E73}";
echo $char;  // Output: 蹳

Ruby:

char = "\u{8E73}"
puts char  # Output: 蹳

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36467;</p>  <!-- Display: 蹳 -->

HTML Hexadecimal:

<p>HTML hex: &#x8E73;</p>  <!-- Display: 蹳 -->

URL Encoding:

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

Encodings

MD5:

e320e9e42eec7eaf894c95acd77ed362

SHA1:

aefcc957f77bd7b6df35ad1d29b6491da4b5c862

Base64:

6Lmz