Unicode Finder

"倠" U+5020(CJK UNIFIED IDEOGRAPH-5020)

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

Programming

C
\u5020
JavaScript
\u5020
Java
\u5020
Json
\u5020
Python
\u5020
Perl
\x{5020}
PHP
\x{5020}
Ruby
\u{5020}
Rust
\u{5020}
Go
\u5020

Web

CSS
\005020
HtmlDecimal
倠
HtmlHexadecimal
倠
Url
%E5%80%A0

Code

MD5
17d97554a50508bd8a5454ab9dcf18fa
Sha1
6ecc4c54061cb51bec6fc7c8d475ba3bd073684e
Base64
5YCg

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5020';
console.log(char);  // Output: 倠

Java:

char c = '\u5020';
System.out.println(c);  // Output: 倠

JSON:

{"text": "\u5020"}  // Value: 倠

Python:

char = '\u5020'
print(char)  # Output: 倠

Perl:

my $char = "\x{5020}";
print $char;  # Output: 倠

PHP:

$char = "\x{5020}";
echo $char;  // Output: 倠

Ruby:

char = "\u{5020}"
puts char  # Output: 倠

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005020";  /* Display: 倠 */
}

HTML Decimal:

<p>HTML decimal: &#20512;</p>  <!-- Display: 倠 -->

HTML Hexadecimal:

<p>HTML hex: &#x5020;</p>  <!-- Display: 倠 -->

URL Encoding:

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

Encodings

MD5:

17d97554a50508bd8a5454ab9dcf18fa

SHA1:

6ecc4c54061cb51bec6fc7c8d475ba3bd073684e

Base64:

5YCg