Unicode Finder

"趉" U+8D89(CJK UNIFIED IDEOGRAPH-8D89)

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

Programming

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

Web

CSS
\008D89
HtmlDecimal
趉
HtmlHexadecimal
趉
Url
%E8%B6%89

Code

MD5
00da73df482154d17647d29901af8270
Sha1
9f98bae89cd979019742ca84ebee06156cd0028a
Base64
6LaJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8D89';
console.log(char);  // Output: 趉

Java:

char c = '\u8D89';
System.out.println(c);  // Output: 趉

JSON:

{"text": "\u8D89"}  // Value: 趉

Python:

char = '\u8D89'
print(char)  # Output: 趉

Perl:

my $char = "\x{8D89}";
print $char;  # Output: 趉

PHP:

$char = "\x{8D89}";
echo $char;  // Output: 趉

Ruby:

char = "\u{8D89}"
puts char  # Output: 趉

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#36233;</p>  <!-- Display: 趉 -->

HTML Hexadecimal:

<p>HTML hex: &#x8D89;</p>  <!-- Display: 趉 -->

URL Encoding:

// 趉 URL encoding
https://unicodefinder.com/search.php?query=%E8%B6%89

Encodings

MD5:

00da73df482154d17647d29901af8270

SHA1:

9f98bae89cd979019742ca84ebee06156cd0028a

Base64:

6LaJ