Unicode Finder

"剕" U+5255(CJK UNIFIED IDEOGRAPH-5255)

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

Programming

C
\u5255
JavaScript
\u5255
Java
\u5255
Json
\u5255
Python
\u5255
Perl
\x{5255}
PHP
\x{5255}
Ruby
\u{5255}
Rust
\u{5255}
Go
\u5255

Web

CSS
\005255
HtmlDecimal
剕
HtmlHexadecimal
剕
Url
%E5%89%95

Code

MD5
eedbb7c1d19f82617b81cedc270aeaaa
Sha1
c354ad2c16a1ee7f55bb593ea1b23853ce16ee3e
Base64
5YmV

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5255';
console.log(char);  // Output: 剕

Java:

char c = '\u5255';
System.out.println(c);  // Output: 剕

JSON:

{"text": "\u5255"}  // Value: 剕

Python:

char = '\u5255'
print(char)  # Output: 剕

Perl:

my $char = "\x{5255}";
print $char;  # Output: 剕

PHP:

$char = "\x{5255}";
echo $char;  // Output: 剕

Ruby:

char = "\u{5255}"
puts char  # Output: 剕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005255";  /* Display: 剕 */
}

HTML Decimal:

<p>HTML decimal: &#21077;</p>  <!-- Display: 剕 -->

HTML Hexadecimal:

<p>HTML hex: &#x5255;</p>  <!-- Display: 剕 -->

URL Encoding:

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

Encodings

MD5:

eedbb7c1d19f82617b81cedc270aeaaa

SHA1:

c354ad2c16a1ee7f55bb593ea1b23853ce16ee3e

Base64:

5YmV