Unicode Finder

"僐" U+50D0(CJK UNIFIED IDEOGRAPH-50D0)

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

Programming

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

Web

CSS
\0050D0
HtmlDecimal
僐
HtmlHexadecimal
僐
Url
%E5%83%90

Code

MD5
89fc77aeceaf5978bf583b24492b2bc7
Sha1
8b2579f0d65bc98d4692a6e26d90e814cbbee4f2
Base64
5YOQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u50D0';
console.log(char);  // Output: 僐

Java:

char c = '\u50D0';
System.out.println(c);  // Output: 僐

JSON:

{"text": "\u50D0"}  // Value: 僐

Python:

char = '\u50D0'
print(char)  # Output: 僐

Perl:

my $char = "\x{50D0}";
print $char;  # Output: 僐

PHP:

$char = "\x{50D0}";
echo $char;  // Output: 僐

Ruby:

char = "\u{50D0}"
puts char  # Output: 僐

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20688;</p>  <!-- Display: 僐 -->

HTML Hexadecimal:

<p>HTML hex: &#x50D0;</p>  <!-- Display: 僐 -->

URL Encoding:

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

Encodings

MD5:

89fc77aeceaf5978bf583b24492b2bc7

SHA1:

8b2579f0d65bc98d4692a6e26d90e814cbbee4f2

Base64:

5YOQ