Unicode Finder

"割" U+5272(CJK UNIFIED IDEOGRAPH-5272)

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

Programming

C
\u5272
JavaScript
\u5272
Java
\u5272
Json
\u5272
Python
\u5272
Perl
\x{5272}
PHP
\x{5272}
Ruby
\u{5272}
Rust
\u{5272}
Go
\u5272

Web

CSS
\005272
HtmlDecimal
割
HtmlHexadecimal
割
Url
%E5%89%B2

Code

MD5
b051bb69ac6ca94147942c0d7050645a
Sha1
02723b20065d90d4d25ee78dbb93f404c19da7c9
Base64
5Ymy

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5272';
console.log(char);  // Output: 割

Java:

char c = '\u5272';
System.out.println(c);  // Output: 割

JSON:

{"text": "\u5272"}  // Value: 割

Python:

char = '\u5272'
print(char)  # Output: 割

Perl:

my $char = "\x{5272}";
print $char;  # Output: 割

PHP:

$char = "\x{5272}";
echo $char;  // Output: 割

Ruby:

char = "\u{5272}"
puts char  # Output: 割

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005272";  /* Display: 割 */
}

HTML Decimal:

<p>HTML decimal: &#21106;</p>  <!-- Display: 割 -->

HTML Hexadecimal:

<p>HTML hex: &#x5272;</p>  <!-- Display: 割 -->

URL Encoding:

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

Encodings

MD5:

b051bb69ac6ca94147942c0d7050645a

SHA1:

02723b20065d90d4d25ee78dbb93f404c19da7c9

Base64:

5Ymy