Unicode Finder

"剗" U+5257(CJK UNIFIED IDEOGRAPH-5257)

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

Programming

C
\u5257
JavaScript
\u5257
Java
\u5257
Json
\u5257
Python
\u5257
Perl
\x{5257}
PHP
\x{5257}
Ruby
\u{5257}
Rust
\u{5257}
Go
\u5257

Web

CSS
\005257
HtmlDecimal
剗
HtmlHexadecimal
剗
Url
%E5%89%97

Code

MD5
da79fe35a3672f0eb50d77b1c9f1101c
Sha1
32331be658d0e11c495ffe3d3918addbf02e0b90
Base64
5YmX

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5257';
console.log(char);  // Output: 剗

Java:

char c = '\u5257';
System.out.println(c);  // Output: 剗

JSON:

{"text": "\u5257"}  // Value: 剗

Python:

char = '\u5257'
print(char)  # Output: 剗

Perl:

my $char = "\x{5257}";
print $char;  # Output: 剗

PHP:

$char = "\x{5257}";
echo $char;  // Output: 剗

Ruby:

char = "\u{5257}"
puts char  # Output: 剗

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005257";  /* Display: 剗 */
}

HTML Decimal:

<p>HTML decimal: &#21079;</p>  <!-- Display: 剗 -->

HTML Hexadecimal:

<p>HTML hex: &#x5257;</p>  <!-- Display: 剗 -->

URL Encoding:

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

Encodings

MD5:

da79fe35a3672f0eb50d77b1c9f1101c

SHA1:

32331be658d0e11c495ffe3d3918addbf02e0b90

Base64:

5YmX