Unicode Finder

"踩" U+8E29(CJK UNIFIED IDEOGRAPH-8E29)

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

Programming

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

Web

CSS
\008E29
HtmlDecimal
踩
HtmlHexadecimal
踩
Url
%E8%B8%A9

Code

MD5
b40c9c72ad4c7c3ce5b1a2175f492c3d
Sha1
f422011de680ca067f7569422c97382a72b5de3f
Base64
6Lip

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8E29';
console.log(char);  // Output: 踩

Java:

char c = '\u8E29';
System.out.println(c);  // Output: 踩

JSON:

{"text": "\u8E29"}  // Value: 踩

Python:

char = '\u8E29'
print(char)  # Output: 踩

Perl:

my $char = "\x{8E29}";
print $char;  # Output: 踩

PHP:

$char = "\x{8E29}";
echo $char;  // Output: 踩

Ruby:

char = "\u{8E29}"
puts char  # Output: 踩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36393;</p>  <!-- Display: 踩 -->

HTML Hexadecimal:

<p>HTML hex: &#x8E29;</p>  <!-- Display: 踩 -->

URL Encoding:

// 踩 URL encoding
https://unicodefinder.com/search.php?query=%E8%B8%A9

Encodings

MD5:

b40c9c72ad4c7c3ce5b1a2175f492c3d

SHA1:

f422011de680ca067f7569422c97382a72b5de3f

Base64:

6Lip