Unicode Finder

"走" U+8D70(CJK UNIFIED IDEOGRAPH-8D70)

U+8D70
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8D70

Programming

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

Web

CSS
\008D70
HtmlDecimal
走
HtmlHexadecimal
走
Url
%E8%B5%B0

Code

MD5
0154e79e142c1c73e0859db1b7ce523d
Sha1
0851681d6802b6abfbee9e2ca1e7dfd1eead3b82
Base64
6LWw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8D70';
console.log(char);  // Output: 走

Java:

char c = '\u8D70';
System.out.println(c);  // Output: 走

JSON:

{"text": "\u8D70"}  // Value: 走

Python:

char = '\u8D70'
print(char)  # Output: 走

Perl:

my $char = "\x{8D70}";
print $char;  # Output: 走

PHP:

$char = "\x{8D70}";
echo $char;  // Output: 走

Ruby:

char = "\u{8D70}"
puts char  # Output: 走

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36208;</p>  <!-- Display: 走 -->

HTML Hexadecimal:

<p>HTML hex: &#x8D70;</p>  <!-- Display: 走 -->

URL Encoding:

// 走 URL encoding
https://unicodefinder.com/search.php?query=%E8%B5%B0

Encodings

MD5:

0154e79e142c1c73e0859db1b7ce523d

SHA1:

0851681d6802b6abfbee9e2ca1e7dfd1eead3b82

Base64:

6LWw