Unicode Finder

"倰" U+5030(CJK UNIFIED IDEOGRAPH-5030)

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

Programming

C
\u5030
JavaScript
\u5030
Java
\u5030
Json
\u5030
Python
\u5030
Perl
\x{5030}
PHP
\x{5030}
Ruby
\u{5030}
Rust
\u{5030}
Go
\u5030

Web

CSS
\005030
HtmlDecimal
倰
HtmlHexadecimal
倰
Url
%E5%80%B0

Code

MD5
832de17d0454aad4629e12a5279ce966
Sha1
c8de99b00ee732f1d129c37d003dbe3e23bae1b9
Base64
5YCw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5030';
console.log(char);  // Output: 倰

Java:

char c = '\u5030';
System.out.println(c);  // Output: 倰

JSON:

{"text": "\u5030"}  // Value: 倰

Python:

char = '\u5030'
print(char)  # Output: 倰

Perl:

my $char = "\x{5030}";
print $char;  # Output: 倰

PHP:

$char = "\x{5030}";
echo $char;  // Output: 倰

Ruby:

char = "\u{5030}"
puts char  # Output: 倰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005030";  /* Display: 倰 */
}

HTML Decimal:

<p>HTML decimal: &#20528;</p>  <!-- Display: 倰 -->

HTML Hexadecimal:

<p>HTML hex: &#x5030;</p>  <!-- Display: 倰 -->

URL Encoding:

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

Encodings

MD5:

832de17d0454aad4629e12a5279ce966

SHA1:

c8de99b00ee732f1d129c37d003dbe3e23bae1b9

Base64:

5YCw