Unicode Finder

"僋" U+50CB(CJK UNIFIED IDEOGRAPH-50CB)

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

Programming

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

Web

CSS
\0050CB
HtmlDecimal
僋
HtmlHexadecimal
僋
Url
%E5%83%8B

Code

MD5
3ad9c26d7d4d4d6354983dc28001e828
Sha1
f634289c5f389daa44480c8601e9a974c395c00b
Base64
5YOL

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u50CB';
console.log(char);  // Output: 僋

Java:

char c = '\u50CB';
System.out.println(c);  // Output: 僋

JSON:

{"text": "\u50CB"}  // Value: 僋

Python:

char = '\u50CB'
print(char)  # Output: 僋

Perl:

my $char = "\x{50CB}";
print $char;  # Output: 僋

PHP:

$char = "\x{50CB}";
echo $char;  // Output: 僋

Ruby:

char = "\u{50CB}"
puts char  # Output: 僋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20683;</p>  <!-- Display: 僋 -->

HTML Hexadecimal:

<p>HTML hex: &#x50CB;</p>  <!-- Display: 僋 -->

URL Encoding:

// 僋 URL encoding
https://unicodefinder.com/search.php?query=%E5%83%8B

Encodings

MD5:

3ad9c26d7d4d4d6354983dc28001e828

SHA1:

f634289c5f389daa44480c8601e9a974c395c00b

Base64:

5YOL