Unicode Finder

"倓" U+5013(CJK UNIFIED IDEOGRAPH-5013)

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

Programming

C
\u5013
JavaScript
\u5013
Java
\u5013
Json
\u5013
Python
\u5013
Perl
\x{5013}
PHP
\x{5013}
Ruby
\u{5013}
Rust
\u{5013}
Go
\u5013

Web

CSS
\005013
HtmlDecimal
倓
HtmlHexadecimal
倓
Url
%E5%80%93

Code

MD5
af5aa02b843de6bbc22c72004c9d0c92
Sha1
883718df911d17bcacfb87ea2133d7c882391891
Base64
5YCT

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5013';
console.log(char);  // Output: 倓

Java:

char c = '\u5013';
System.out.println(c);  // Output: 倓

JSON:

{"text": "\u5013"}  // Value: 倓

Python:

char = '\u5013'
print(char)  # Output: 倓

Perl:

my $char = "\x{5013}";
print $char;  # Output: 倓

PHP:

$char = "\x{5013}";
echo $char;  // Output: 倓

Ruby:

char = "\u{5013}"
puts char  # Output: 倓

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005013";  /* Display: 倓 */
}

HTML Decimal:

<p>HTML decimal: &#20499;</p>  <!-- Display: 倓 -->

HTML Hexadecimal:

<p>HTML hex: &#x5013;</p>  <!-- Display: 倓 -->

URL Encoding:

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

Encodings

MD5:

af5aa02b843de6bbc22c72004c9d0c92

SHA1:

883718df911d17bcacfb87ea2133d7c882391891

Base64:

5YCT