Unicode Finder

"兲" U+5172(CJK UNIFIED IDEOGRAPH-5172)

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

Programming

C
\u5172
JavaScript
\u5172
Java
\u5172
Json
\u5172
Python
\u5172
Perl
\x{5172}
PHP
\x{5172}
Ruby
\u{5172}
Rust
\u{5172}
Go
\u5172

Web

CSS
\005172
HtmlDecimal
兲
HtmlHexadecimal
兲
Url
%E5%85%B2

Code

MD5
5fdcefffc5b66e0a5bf4022a05e20b65
Sha1
6729d69b5662e66a826199d24ee9c92ee6c70561
Base64
5YWy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5172';
console.log(char);  // Output: 兲

Java:

char c = '\u5172';
System.out.println(c);  // Output: 兲

JSON:

{"text": "\u5172"}  // Value: 兲

Python:

char = '\u5172'
print(char)  # Output: 兲

Perl:

my $char = "\x{5172}";
print $char;  # Output: 兲

PHP:

$char = "\x{5172}";
echo $char;  // Output: 兲

Ruby:

char = "\u{5172}"
puts char  # Output: 兲

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005172";  /* Display: 兲 */
}

HTML Decimal:

<p>HTML decimal: &#20850;</p>  <!-- Display: 兲 -->

HTML Hexadecimal:

<p>HTML hex: &#x5172;</p>  <!-- Display: 兲 -->

URL Encoding:

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

Encodings

MD5:

5fdcefffc5b66e0a5bf4022a05e20b65

SHA1:

6729d69b5662e66a826199d24ee9c92ee6c70561

Base64:

5YWy