Unicode Finder

"儥" U+5125(CJK UNIFIED IDEOGRAPH-5125)

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

Programming

C
\u5125
JavaScript
\u5125
Java
\u5125
Json
\u5125
Python
\u5125
Perl
\x{5125}
PHP
\x{5125}
Ruby
\u{5125}
Rust
\u{5125}
Go
\u5125

Web

CSS
\005125
HtmlDecimal
儥
HtmlHexadecimal
儥
Url
%E5%84%A5

Code

MD5
9c9cf62c299e9262b0949d44cf2bff2b
Sha1
5950d8e9e3aec8363ccddcb1cd43db0ac501bbb2
Base64
5YSl

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5125';
console.log(char);  // Output: 儥

Java:

char c = '\u5125';
System.out.println(c);  // Output: 儥

JSON:

{"text": "\u5125"}  // Value: 儥

Python:

char = '\u5125'
print(char)  # Output: 儥

Perl:

my $char = "\x{5125}";
print $char;  # Output: 儥

PHP:

$char = "\x{5125}";
echo $char;  // Output: 儥

Ruby:

char = "\u{5125}"
puts char  # Output: 儥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005125";  /* Display: 儥 */
}

HTML Decimal:

<p>HTML decimal: &#20773;</p>  <!-- Display: 儥 -->

HTML Hexadecimal:

<p>HTML hex: &#x5125;</p>  <!-- Display: 儥 -->

URL Encoding:

// 儥 URL encoding
https://unicodefinder.com/search.php?query=%E5%84%A5

Encodings

MD5:

9c9cf62c299e9262b0949d44cf2bff2b

SHA1:

5950d8e9e3aec8363ccddcb1cd43db0ac501bbb2

Base64:

5YSl