Unicode Finder

"僀" U+50C0(CJK UNIFIED IDEOGRAPH-50C0)

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

Programming

C
\u50C0
JavaScript
\u50C0
Java
\u50C0
Json
\u50C0
Python
\u50C0
Perl
\x{50C0}
PHP
\x{50C0}
Ruby
\u{50C0}
Rust
\u{50C0}
Go
\u50C0

Web

CSS
\0050C0
HtmlDecimal
僀
HtmlHexadecimal
僀
Url
%E5%83%80

Code

MD5
6e0ff7fa972858737746e8978aeb842b
Sha1
e13edbbd6431b724a4fb0de7d39a5a3d3b8940f8
Base64
5YOA

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u50C0';
console.log(char);  // Output: 僀

Java:

char c = '\u50C0';
System.out.println(c);  // Output: 僀

JSON:

{"text": "\u50C0"}  // Value: 僀

Python:

char = '\u50C0'
print(char)  # Output: 僀

Perl:

my $char = "\x{50C0}";
print $char;  # Output: 僀

PHP:

$char = "\x{50C0}";
echo $char;  // Output: 僀

Ruby:

char = "\u{50C0}"
puts char  # Output: 僀

Rust:

let c = '\u{50C0}';
println!("{}", c);  // Output: 僀

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0050C0";  /* Display: 僀 */
}

HTML Decimal:

<p>HTML decimal: &#20672;</p>  <!-- Display: 僀 -->

HTML Hexadecimal:

<p>HTML hex: &#x50C0;</p>  <!-- Display: 僀 -->

URL Encoding:

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

Encodings

MD5:

6e0ff7fa972858737746e8978aeb842b

SHA1:

e13edbbd6431b724a4fb0de7d39a5a3d3b8940f8

Base64:

5YOA