Unicode Finder

"僑" U+50D1(CJK UNIFIED IDEOGRAPH-50D1)

U+50D1
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-50D1

Programming

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

Web

CSS
\0050D1
HtmlDecimal
僑
HtmlHexadecimal
僑
Url
%E5%83%91

Code

MD5
91a240eb72672c54e303bb5f7e139c8e
Sha1
6829af941cc5f7ebfeb8100500f46e5364bcc70d
Base64
5YOR

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u50D1';
console.log(char);  // Output: 僑

Java:

char c = '\u50D1';
System.out.println(c);  // Output: 僑

JSON:

{"text": "\u50D1"}  // Value: 僑

Python:

char = '\u50D1'
print(char)  # Output: 僑

Perl:

my $char = "\x{50D1}";
print $char;  # Output: 僑

PHP:

$char = "\x{50D1}";
echo $char;  // Output: 僑

Ruby:

char = "\u{50D1}"
puts char  # Output: 僑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20689;</p>  <!-- Display: 僑 -->

HTML Hexadecimal:

<p>HTML hex: &#x50D1;</p>  <!-- Display: 僑 -->

URL Encoding:

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

Encodings

MD5:

91a240eb72672c54e303bb5f7e139c8e

SHA1:

6829af941cc5f7ebfeb8100500f46e5364bcc70d

Base64:

5YOR