Unicode Finder

"剰" U+5270(CJK UNIFIED IDEOGRAPH-5270)

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

Programming

C
\u5270
JavaScript
\u5270
Java
\u5270
Json
\u5270
Python
\u5270
Perl
\x{5270}
PHP
\x{5270}
Ruby
\u{5270}
Rust
\u{5270}
Go
\u5270

Web

CSS
\005270
HtmlDecimal
剰
HtmlHexadecimal
剰
Url
%E5%89%B0

Code

MD5
cd4f832a13cb332e70fb326fad1cdaae
Sha1
b64c281650130c08586a0dda6c5e9ac1aa04dae2
Base64
5Ymw

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5270';
console.log(char);  // Output: 剰

Java:

char c = '\u5270';
System.out.println(c);  // Output: 剰

JSON:

{"text": "\u5270"}  // Value: 剰

Python:

char = '\u5270'
print(char)  # Output: 剰

Perl:

my $char = "\x{5270}";
print $char;  # Output: 剰

PHP:

$char = "\x{5270}";
echo $char;  // Output: 剰

Ruby:

char = "\u{5270}"
puts char  # Output: 剰

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005270";  /* Display: 剰 */
}

HTML Decimal:

<p>HTML decimal: &#21104;</p>  <!-- Display: 剰 -->

HTML Hexadecimal:

<p>HTML hex: &#x5270;</p>  <!-- Display: 剰 -->

URL Encoding:

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

Encodings

MD5:

cd4f832a13cb332e70fb326fad1cdaae

SHA1:

b64c281650130c08586a0dda6c5e9ac1aa04dae2

Base64:

5Ymw