Unicode Finder

"厃" U+5383(CJK UNIFIED IDEOGRAPH-5383)

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

Programming

C
\u5383
JavaScript
\u5383
Java
\u5383
Json
\u5383
Python
\u5383
Perl
\x{5383}
PHP
\x{5383}
Ruby
\u{5383}
Rust
\u{5383}
Go
\u5383

Web

CSS
\005383
HtmlDecimal
厃
HtmlHexadecimal
厃
Url
%E5%8E%83

Code

MD5
2dfb27e4268f5207c2a318e7fbe3a76f
Sha1
8e4e63037e3585188d239ccaafde3e7612603b45
Base64
5Y6D

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5383';
console.log(char);  // Output: 厃

Java:

char c = '\u5383';
System.out.println(c);  // Output: 厃

JSON:

{"text": "\u5383"}  // Value: 厃

Python:

char = '\u5383'
print(char)  # Output: 厃

Perl:

my $char = "\x{5383}";
print $char;  # Output: 厃

PHP:

$char = "\x{5383}";
echo $char;  // Output: 厃

Ruby:

char = "\u{5383}"
puts char  # Output: 厃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005383";  /* Display: 厃 */
}

HTML Decimal:

<p>HTML decimal: &#21379;</p>  <!-- Display: 厃 -->

HTML Hexadecimal:

<p>HTML hex: &#x5383;</p>  <!-- Display: 厃 -->

URL Encoding:

// 厃 URL encoding
https://unicodefinder.com/search.php?query=%E5%8E%83

Encodings

MD5:

2dfb27e4268f5207c2a318e7fbe3a76f

SHA1:

8e4e63037e3585188d239ccaafde3e7612603b45

Base64:

5Y6D