Unicode Finder

"剥" U+5265(CJK UNIFIED IDEOGRAPH-5265)

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

Programming

C
\u5265
JavaScript
\u5265
Java
\u5265
Json
\u5265
Python
\u5265
Perl
\x{5265}
PHP
\x{5265}
Ruby
\u{5265}
Rust
\u{5265}
Go
\u5265

Web

CSS
\005265
HtmlDecimal
剥
HtmlHexadecimal
剥
Url
%E5%89%A5

Code

MD5
1d9c79a0d3693c9255c73349a0b05499
Sha1
5d1a39d1d3d5c6eb6145a5f638daab707be2a811
Base64
5Yml

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5265';
console.log(char);  // Output: 剥

Java:

char c = '\u5265';
System.out.println(c);  // Output: 剥

JSON:

{"text": "\u5265"}  // Value: 剥

Python:

char = '\u5265'
print(char)  # Output: 剥

Perl:

my $char = "\x{5265}";
print $char;  # Output: 剥

PHP:

$char = "\x{5265}";
echo $char;  // Output: 剥

Ruby:

char = "\u{5265}"
puts char  # Output: 剥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005265";  /* Display: 剥 */
}

HTML Decimal:

<p>HTML decimal: &#21093;</p>  <!-- Display: 剥 -->

HTML Hexadecimal:

<p>HTML hex: &#x5265;</p>  <!-- Display: 剥 -->

URL Encoding:

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

Encodings

MD5:

1d9c79a0d3693c9255c73349a0b05499

SHA1:

5d1a39d1d3d5c6eb6145a5f638daab707be2a811

Base64:

5Yml