Unicode Finder

"攭" U+652D(CJK UNIFIED IDEOGRAPH-652D)

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

Programming

C
\u652D
JavaScript
\u652D
Java
\u652D
Json
\u652D
Python
\u652D
Perl
\x{652D}
PHP
\x{652D}
Ruby
\u{652D}
Rust
\u{652D}
Go
\u652D

Web

CSS
\00652D
HtmlDecimal
攭
HtmlHexadecimal
攭
Url
%E6%94%AD

Code

MD5
9892bad4ea1736f10e1857acbd08bf57
Sha1
b445b77230e92d4bb14db7f27585c60fbd50ea4d
Base64
5pSt

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u652D';
console.log(char);  // Output: 攭

Java:

char c = '\u652D';
System.out.println(c);  // Output: 攭

JSON:

{"text": "\u652D"}  // Value: 攭

Python:

char = '\u652D'
print(char)  # Output: 攭

Perl:

my $char = "\x{652D}";
print $char;  # Output: 攭

PHP:

$char = "\x{652D}";
echo $char;  // Output: 攭

Ruby:

char = "\u{652D}"
puts char  # Output: 攭

Rust:

let c = '\u{652D}';
println!("{}", c);  // Output: 攭

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00652D";  /* Display: 攭 */
}

HTML Decimal:

<p>HTML decimal: &#25901;</p>  <!-- Display: 攭 -->

HTML Hexadecimal:

<p>HTML hex: &#x652D;</p>  <!-- Display: 攭 -->

URL Encoding:

// 攭 URL encoding
https://unicodefinder.com/search.php?query=%E6%94%AD

Encodings

MD5:

9892bad4ea1736f10e1857acbd08bf57

SHA1:

b445b77230e92d4bb14db7f27585c60fbd50ea4d

Base64:

5pSt