Unicode Finder

"争" U+4E89(CJK UNIFIED IDEOGRAPH-4E89)

U+4E89
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-4E89

Programming

C
\u4E89
JavaScript
\u4E89
Java
\u4E89
Json
\u4E89
Python
\u4E89
Perl
\x{4E89}
PHP
\x{4E89}
Ruby
\u{4E89}
Rust
\u{4E89}
Go
\u4E89

Web

CSS
\004E89
HtmlDecimal
争
HtmlHexadecimal
争
Url
%E4%BA%89

Code

MD5
6a4fae8e3750e555836def06d3b70df1
Sha1
3e88d694b8bbce5f71c0c38706f39fb39f895e90
Base64
5LqJ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4E89';
console.log(char);  // Output: 争

Java:

char c = '\u4E89';
System.out.println(c);  // Output: 争

JSON:

{"text": "\u4E89"}  // Value: 争

Python:

char = '\u4E89'
print(char)  # Output: 争

Perl:

my $char = "\x{4E89}";
print $char;  # Output: 争

PHP:

$char = "\x{4E89}";
echo $char;  // Output: 争

Ruby:

char = "\u{4E89}"
puts char  # Output: 争

Rust:

let c = '\u{4E89}';
println!("{}", c);  // Output: 争

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\004E89";  /* Display: 争 */
}

HTML Decimal:

<p>HTML decimal: &#20105;</p>  <!-- Display: 争 -->

HTML Hexadecimal:

<p>HTML hex: &#x4E89;</p>  <!-- Display: 争 -->

URL Encoding:

// 争 URL encoding
https://unicodefinder.com/search.php?query=%E4%BA%89

Encodings

MD5:

6a4fae8e3750e555836def06d3b70df1

SHA1:

3e88d694b8bbce5f71c0c38706f39fb39f895e90

Base64:

5LqJ