Unicode Finder

"僕" U+50D5(CJK UNIFIED IDEOGRAPH-50D5)

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

Programming

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

Web

CSS
\0050D5
HtmlDecimal
僕
HtmlHexadecimal
僕
Url
%E5%83%95

Code

MD5
c9ab799b88ce9514b401b9717e17bd8e
Sha1
d9b58894b25e1d2afba453bd8416ece591e162ad
Base64
5YOV

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u50D5';
console.log(char);  // Output: 僕

Java:

char c = '\u50D5';
System.out.println(c);  // Output: 僕

JSON:

{"text": "\u50D5"}  // Value: 僕

Python:

char = '\u50D5'
print(char)  # Output: 僕

Perl:

my $char = "\x{50D5}";
print $char;  # Output: 僕

PHP:

$char = "\x{50D5}";
echo $char;  // Output: 僕

Ruby:

char = "\u{50D5}"
puts char  # Output: 僕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20693;</p>  <!-- Display: 僕 -->

HTML Hexadecimal:

<p>HTML hex: &#x50D5;</p>  <!-- Display: 僕 -->

URL Encoding:

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

Encodings

MD5:

c9ab799b88ce9514b401b9717e17bd8e

SHA1:

d9b58894b25e1d2afba453bd8416ece591e162ad

Base64:

5YOV