Unicode Finder

"僱" U+50F1(CJK UNIFIED IDEOGRAPH-50F1)

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

Programming

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

Web

CSS
\0050F1
HtmlDecimal
僱
HtmlHexadecimal
僱
Url
%E5%83%B1

Code

MD5
4dca79ea99aa02668fbf94e1fa5045dd
Sha1
a5ccca6a8fc6599b871b6ee203d24b0ae1ed82ed
Base64
5YOx

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u50F1';
console.log(char);  // Output: 僱

Java:

char c = '\u50F1';
System.out.println(c);  // Output: 僱

JSON:

{"text": "\u50F1"}  // Value: 僱

Python:

char = '\u50F1'
print(char)  # Output: 僱

Perl:

my $char = "\x{50F1}";
print $char;  # Output: 僱

PHP:

$char = "\x{50F1}";
echo $char;  // Output: 僱

Ruby:

char = "\u{50F1}"
puts char  # Output: 僱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20721;</p>  <!-- Display: 僱 -->

HTML Hexadecimal:

<p>HTML hex: &#x50F1;</p>  <!-- Display: 僱 -->

URL Encoding:

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

Encodings

MD5:

4dca79ea99aa02668fbf94e1fa5045dd

SHA1:

a5ccca6a8fc6599b871b6ee203d24b0ae1ed82ed

Base64:

5YOx