Unicode Finder

"儰" U+5130(CJK UNIFIED IDEOGRAPH-5130)

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

Programming

C
\u5130
JavaScript
\u5130
Java
\u5130
Json
\u5130
Python
\u5130
Perl
\x{5130}
PHP
\x{5130}
Ruby
\u{5130}
Rust
\u{5130}
Go
\u5130

Web

CSS
\005130
HtmlDecimal
儰
HtmlHexadecimal
儰
Url
%E5%84%B0

Code

MD5
4868b9e7459e87f6d9534ea998d5c684
Sha1
201cff8d5388926013a096e5229bbaf293f6aef8
Base64
5YSw

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5130';
console.log(char);  // Output: 儰

Java:

char c = '\u5130';
System.out.println(c);  // Output: 儰

JSON:

{"text": "\u5130"}  // Value: 儰

Python:

char = '\u5130'
print(char)  # Output: 儰

Perl:

my $char = "\x{5130}";
print $char;  # Output: 儰

PHP:

$char = "\x{5130}";
echo $char;  // Output: 儰

Ruby:

char = "\u{5130}"
puts char  # Output: 儰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005130";  /* Display: 儰 */
}

HTML Decimal:

<p>HTML decimal: &#20784;</p>  <!-- Display: 儰 -->

HTML Hexadecimal:

<p>HTML hex: &#x5130;</p>  <!-- Display: 儰 -->

URL Encoding:

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

Encodings

MD5:

4868b9e7459e87f6d9534ea998d5c684

SHA1:

201cff8d5388926013a096e5229bbaf293f6aef8

Base64:

5YSw