Unicode Finder

"僫" U+50EB(CJK UNIFIED IDEOGRAPH-50EB)

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

Programming

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

Web

CSS
\0050EB
HtmlDecimal
僫
HtmlHexadecimal
僫
Url
%E5%83%AB

Code

MD5
a5b9e4e2fd8eea5dbe5d27a2aa4c6f75
Sha1
d804cd05458e25da2ba2c393ec1e71195cbd9947
Base64
5YOr

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u50EB';
console.log(char);  // Output: 僫

Java:

char c = '\u50EB';
System.out.println(c);  // Output: 僫

JSON:

{"text": "\u50EB"}  // Value: 僫

Python:

char = '\u50EB'
print(char)  # Output: 僫

Perl:

my $char = "\x{50EB}";
print $char;  # Output: 僫

PHP:

$char = "\x{50EB}";
echo $char;  // Output: 僫

Ruby:

char = "\u{50EB}"
puts char  # Output: 僫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20715;</p>  <!-- Display: 僫 -->

HTML Hexadecimal:

<p>HTML hex: &#x50EB;</p>  <!-- Display: 僫 -->

URL Encoding:

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

Encodings

MD5:

a5b9e4e2fd8eea5dbe5d27a2aa4c6f75

SHA1:

d804cd05458e25da2ba2c393ec1e71195cbd9947

Base64:

5YOr