Unicode Finder

"僣" U+50E3(CJK UNIFIED IDEOGRAPH-50E3)

U+50E3
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-50E3

Programming

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

Web

CSS
\0050E3
HtmlDecimal
僣
HtmlHexadecimal
僣
Url
%E5%83%A3

Code

MD5
b8646a02225ec7e7c511e30567e54bef
Sha1
06d698eb27c31c213a12fbd2507e4ba2c34d593d
Base64
5YOj

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u50E3';
console.log(char);  // Output: 僣

Java:

char c = '\u50E3';
System.out.println(c);  // Output: 僣

JSON:

{"text": "\u50E3"}  // Value: 僣

Python:

char = '\u50E3'
print(char)  # Output: 僣

Perl:

my $char = "\x{50E3}";
print $char;  # Output: 僣

PHP:

$char = "\x{50E3}";
echo $char;  // Output: 僣

Ruby:

char = "\u{50E3}"
puts char  # Output: 僣

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20707;</p>  <!-- Display: 僣 -->

HTML Hexadecimal:

<p>HTML hex: &#x50E3;</p>  <!-- Display: 僣 -->

URL Encoding:

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

Encodings

MD5:

b8646a02225ec7e7c511e30567e54bef

SHA1:

06d698eb27c31c213a12fbd2507e4ba2c34d593d

Base64:

5YOj