Unicode Finder

"僆" U+50C6(CJK UNIFIED IDEOGRAPH-50C6)

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

Programming

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

Web

CSS
\0050C6
HtmlDecimal
僆
HtmlHexadecimal
僆
Url
%E5%83%86

Code

MD5
ce4b60e663922a99ef938fdf494a9cea
Sha1
fc85aec1e1792a31380db063fd022d2f85373a84
Base64
5YOG

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u50C6';
console.log(char);  // Output: 僆

Java:

char c = '\u50C6';
System.out.println(c);  // Output: 僆

JSON:

{"text": "\u50C6"}  // Value: 僆

Python:

char = '\u50C6'
print(char)  # Output: 僆

Perl:

my $char = "\x{50C6}";
print $char;  # Output: 僆

PHP:

$char = "\x{50C6}";
echo $char;  // Output: 僆

Ruby:

char = "\u{50C6}"
puts char  # Output: 僆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20678;</p>  <!-- Display: 僆 -->

HTML Hexadecimal:

<p>HTML hex: &#x50C6;</p>  <!-- Display: 僆 -->

URL Encoding:

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

Encodings

MD5:

ce4b60e663922a99ef938fdf494a9cea

SHA1:

fc85aec1e1792a31380db063fd022d2f85373a84

Base64:

5YOG