Unicode Finder

"児" U+5150(CJK UNIFIED IDEOGRAPH-5150)

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

Programming

C
\u5150
JavaScript
\u5150
Java
\u5150
Json
\u5150
Python
\u5150
Perl
\x{5150}
PHP
\x{5150}
Ruby
\u{5150}
Rust
\u{5150}
Go
\u5150

Web

CSS
\005150
HtmlDecimal
児
HtmlHexadecimal
児
Url
%E5%85%90

Code

MD5
ebf88a3c182c9f11bdf383699209aac6
Sha1
aa0b762983d48f3eaa22b1d69578858e79b915a9
Base64
5YWQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5150';
console.log(char);  // Output: 児

Java:

char c = '\u5150';
System.out.println(c);  // Output: 児

JSON:

{"text": "\u5150"}  // Value: 児

Python:

char = '\u5150'
print(char)  # Output: 児

Perl:

my $char = "\x{5150}";
print $char;  # Output: 児

PHP:

$char = "\x{5150}";
echo $char;  // Output: 児

Ruby:

char = "\u{5150}"
puts char  # Output: 児

Rust:

let c = '\u{5150}';
println!("{}", c);  // Output: 児

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005150";  /* Display: 児 */
}

HTML Decimal:

<p>HTML decimal: &#20816;</p>  <!-- Display: 児 -->

HTML Hexadecimal:

<p>HTML hex: &#x5150;</p>  <!-- Display: 児 -->

URL Encoding:

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

Encodings

MD5:

ebf88a3c182c9f11bdf383699209aac6

SHA1:

aa0b762983d48f3eaa22b1d69578858e79b915a9

Base64:

5YWQ