Unicode Finder

"堷" U+5837(CJK UNIFIED IDEOGRAPH-5837)

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

Programming

C
\u5837
JavaScript
\u5837
Java
\u5837
Json
\u5837
Python
\u5837
Perl
\x{5837}
PHP
\x{5837}
Ruby
\u{5837}
Rust
\u{5837}
Go
\u5837

Web

CSS
\005837
HtmlDecimal
堷
HtmlHexadecimal
堷
Url
%E5%A0%B7

Code

MD5
02f6e1af63b83fda6ab1deb94e0d60b9
Sha1
c611948b39f2c1a51fe267e14bd22b1469229858
Base64
5aC3

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5837';
console.log(char);  // Output: 堷

Java:

char c = '\u5837';
System.out.println(c);  // Output: 堷

JSON:

{"text": "\u5837"}  // Value: 堷

Python:

char = '\u5837'
print(char)  # Output: 堷

Perl:

my $char = "\x{5837}";
print $char;  # Output: 堷

PHP:

$char = "\x{5837}";
echo $char;  // Output: 堷

Ruby:

char = "\u{5837}"
puts char  # Output: 堷

Rust:

let c = '\u{5837}';
println!("{}", c);  // Output: 堷

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005837";  /* Display: 堷 */
}

HTML Decimal:

<p>HTML decimal: &#22583;</p>  <!-- Display: 堷 -->

HTML Hexadecimal:

<p>HTML hex: &#x5837;</p>  <!-- Display: 堷 -->

URL Encoding:

// 堷 URL encoding
https://unicodefinder.com/search.php?query=%E5%A0%B7

Encodings

MD5:

02f6e1af63b83fda6ab1deb94e0d60b9

SHA1:

c611948b39f2c1a51fe267e14bd22b1469229858

Base64:

5aC3