Unicode Finder

"倃" U+5003(CJK UNIFIED IDEOGRAPH-5003)

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

Programming

C
\u5003
JavaScript
\u5003
Java
\u5003
Json
\u5003
Python
\u5003
Perl
\x{5003}
PHP
\x{5003}
Ruby
\u{5003}
Rust
\u{5003}
Go
\u5003

Web

CSS
\005003
HtmlDecimal
倃
HtmlHexadecimal
倃
Url
%E5%80%83

Code

MD5
14a135135d591aee10fd36961b3b2010
Sha1
023fd1ad7a8c758e4babf2f2738a7f7d728113cc
Base64
5YCD

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5003';
console.log(char);  // Output: 倃

Java:

char c = '\u5003';
System.out.println(c);  // Output: 倃

JSON:

{"text": "\u5003"}  // Value: 倃

Python:

char = '\u5003'
print(char)  # Output: 倃

Perl:

my $char = "\x{5003}";
print $char;  # Output: 倃

PHP:

$char = "\x{5003}";
echo $char;  // Output: 倃

Ruby:

char = "\u{5003}"
puts char  # Output: 倃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005003";  /* Display: 倃 */
}

HTML Decimal:

<p>HTML decimal: &#20483;</p>  <!-- Display: 倃 -->

HTML Hexadecimal:

<p>HTML hex: &#x5003;</p>  <!-- Display: 倃 -->

URL Encoding:

// 倃 URL encoding
https://unicodefinder.com/search.php?query=%E5%80%83

Encodings

MD5:

14a135135d591aee10fd36961b3b2010

SHA1:

023fd1ad7a8c758e4babf2f2738a7f7d728113cc

Base64:

5YCD