Unicode Finder

"兒" U+5152(CJK UNIFIED IDEOGRAPH-5152)

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

Programming

C
\u5152
JavaScript
\u5152
Java
\u5152
Json
\u5152
Python
\u5152
Perl
\x{5152}
PHP
\x{5152}
Ruby
\u{5152}
Rust
\u{5152}
Go
\u5152

Web

CSS
\005152
HtmlDecimal
兒
HtmlHexadecimal
兒
Url
%E5%85%92

Code

MD5
54c5d6db0de9e14c0054c585cd2e71b8
Sha1
389d474afa85721559ef8d596f350bc251005dbc
Base64
5YWS

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5152';
console.log(char);  // Output: 兒

Java:

char c = '\u5152';
System.out.println(c);  // Output: 兒

JSON:

{"text": "\u5152"}  // Value: 兒

Python:

char = '\u5152'
print(char)  # Output: 兒

Perl:

my $char = "\x{5152}";
print $char;  # Output: 兒

PHP:

$char = "\x{5152}";
echo $char;  // Output: 兒

Ruby:

char = "\u{5152}"
puts char  # Output: 兒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005152";  /* Display: 兒 */
}

HTML Decimal:

<p>HTML decimal: &#20818;</p>  <!-- Display: 兒 -->

HTML Hexadecimal:

<p>HTML hex: &#x5152;</p>  <!-- Display: 兒 -->

URL Encoding:

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

Encodings

MD5:

54c5d6db0de9e14c0054c585cd2e71b8

SHA1:

389d474afa85721559ef8d596f350bc251005dbc

Base64:

5YWS