Unicode Finder

"剨" U+5268(CJK UNIFIED IDEOGRAPH-5268)

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

Programming

C
\u5268
JavaScript
\u5268
Java
\u5268
Json
\u5268
Python
\u5268
Perl
\x{5268}
PHP
\x{5268}
Ruby
\u{5268}
Rust
\u{5268}
Go
\u5268

Web

CSS
\005268
HtmlDecimal
剨
HtmlHexadecimal
剨
Url
%E5%89%A8

Code

MD5
0e43086da2f20c0c54a355de1766604f
Sha1
4237d6f7ab807b717603989ae09625eaadafb64f
Base64
5Ymo

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5268';
console.log(char);  // Output: 剨

Java:

char c = '\u5268';
System.out.println(c);  // Output: 剨

JSON:

{"text": "\u5268"}  // Value: 剨

Python:

char = '\u5268'
print(char)  # Output: 剨

Perl:

my $char = "\x{5268}";
print $char;  # Output: 剨

PHP:

$char = "\x{5268}";
echo $char;  // Output: 剨

Ruby:

char = "\u{5268}"
puts char  # Output: 剨

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005268";  /* Display: 剨 */
}

HTML Decimal:

<p>HTML decimal: &#21096;</p>  <!-- Display: 剨 -->

HTML Hexadecimal:

<p>HTML hex: &#x5268;</p>  <!-- Display: 剨 -->

URL Encoding:

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

Encodings

MD5:

0e43086da2f20c0c54a355de1766604f

SHA1:

4237d6f7ab807b717603989ae09625eaadafb64f

Base64:

5Ymo