Unicode Finder

"互" U+4E92(CJK UNIFIED IDEOGRAPH-4E92)

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

Programming

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

Web

CSS
\004E92
HtmlDecimal
互
HtmlHexadecimal
互
Url
%E4%BA%92

Code

MD5
f0e171779998e78e3e12016ef65ccd9e
Sha1
e4a9aaf8fa877538928efa9ed3164af5ca522f49
Base64
5LqS

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u4E92';
console.log(char);  // Output: 互

Java:

char c = '\u4E92';
System.out.println(c);  // Output: 互

JSON:

{"text": "\u4E92"}  // Value: 互

Python:

char = '\u4E92'
print(char)  # Output: 互

Perl:

my $char = "\x{4E92}";
print $char;  # Output: 互

PHP:

$char = "\x{4E92}";
echo $char;  // Output: 互

Ruby:

char = "\u{4E92}"
puts char  # Output: 互

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20114;</p>  <!-- Display: 互 -->

HTML Hexadecimal:

<p>HTML hex: &#x4E92;</p>  <!-- Display: 互 -->

URL Encoding:

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

Encodings

MD5:

f0e171779998e78e3e12016ef65ccd9e

SHA1:

e4a9aaf8fa877538928efa9ed3164af5ca522f49

Base64:

5LqS