Unicode Finder

"僰" U+50F0(CJK UNIFIED IDEOGRAPH-50F0)

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

Programming

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

Web

CSS
\0050F0
HtmlDecimal
僰
HtmlHexadecimal
僰
Url
%E5%83%B0

Code

MD5
cd24f28f8f9b2d774535285e5af4fd31
Sha1
9d0c66dd792706436f1591476d7c1a2b6290fc66
Base64
5YOw

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u50F0';
console.log(char);  // Output: 僰

Java:

char c = '\u50F0';
System.out.println(c);  // Output: 僰

JSON:

{"text": "\u50F0"}  // Value: 僰

Python:

char = '\u50F0'
print(char)  # Output: 僰

Perl:

my $char = "\x{50F0}";
print $char;  # Output: 僰

PHP:

$char = "\x{50F0}";
echo $char;  // Output: 僰

Ruby:

char = "\u{50F0}"
puts char  # Output: 僰

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20720;</p>  <!-- Display: 僰 -->

HTML Hexadecimal:

<p>HTML hex: &#x50F0;</p>  <!-- Display: 僰 -->

URL Encoding:

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

Encodings

MD5:

cd24f28f8f9b2d774535285e5af4fd31

SHA1:

9d0c66dd792706436f1591476d7c1a2b6290fc66

Base64:

5YOw