Unicode Finder

"界" U+754C(CJK UNIFIED IDEOGRAPH-754C)

U+754C
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-754C

Programming

C
\u754C
JavaScript
\u754C
Java
\u754C
Json
\u754C
Python
\u754C
Perl
\x{754C}
PHP
\x{754C}
Ruby
\u{754C}
Rust
\u{754C}
Go
\u754C

Web

CSS
\00754C
HtmlDecimal
界
HtmlHexadecimal
界
Url
%E7%95%8C

Code

MD5
abc5cbd76bdafd2686027f0df3fc80fd
Sha1
5a492160842baca71154e2446c143e7e73cde1cc
Base64
55WM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u754C';
console.log(char);  // Output: 界

Java:

char c = '\u754C';
System.out.println(c);  // Output: 界

JSON:

{"text": "\u754C"}  // Value: 界

Python:

char = '\u754C'
print(char)  # Output: 界

Perl:

my $char = "\x{754C}";
print $char;  # Output: 界

PHP:

$char = "\x{754C}";
echo $char;  // Output: 界

Ruby:

char = "\u{754C}"
puts char  # Output: 界

Rust:

let c = '\u{754C}';
println!("{}", c);  // Output: 界

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00754C";  /* Display: 界 */
}

HTML Decimal:

<p>HTML decimal: &#30028;</p>  <!-- Display: 界 -->

HTML Hexadecimal:

<p>HTML hex: &#x754C;</p>  <!-- Display: 界 -->

URL Encoding:

// 界 URL encoding
https://unicodefinder.com/search.php?query=%E7%95%8C

Encodings

MD5:

abc5cbd76bdafd2686027f0df3fc80fd

SHA1:

5a492160842baca71154e2446c143e7e73cde1cc

Base64:

55WM