Unicode Finder

"跋" U+8DCB(CJK UNIFIED IDEOGRAPH-8DCB)

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

Programming

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

Web

CSS
\008DCB
HtmlDecimal
跋
HtmlHexadecimal
跋
Url
%E8%B7%8B

Code

MD5
c85b573ed89e7ca7c669f3e01c2efca9
Sha1
929bc8914eac2224aeb0e9863274e1fe059d877a
Base64
6LeL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8DCB';
console.log(char);  // Output: 跋

Java:

char c = '\u8DCB';
System.out.println(c);  // Output: 跋

JSON:

{"text": "\u8DCB"}  // Value: 跋

Python:

char = '\u8DCB'
print(char)  # Output: 跋

Perl:

my $char = "\x{8DCB}";
print $char;  # Output: 跋

PHP:

$char = "\x{8DCB}";
echo $char;  // Output: 跋

Ruby:

char = "\u{8DCB}"
puts char  # Output: 跋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36299;</p>  <!-- Display: 跋 -->

HTML Hexadecimal:

<p>HTML hex: &#x8DCB;</p>  <!-- Display: 跋 -->

URL Encoding:

// 跋 URL encoding
https://unicodefinder.com/search.php?query=%E8%B7%8B

Encodings

MD5:

c85b573ed89e7ca7c669f3e01c2efca9

SHA1:

929bc8914eac2224aeb0e9863274e1fe059d877a

Base64:

6LeL