Unicode Finder

"支" U+652F(CJK UNIFIED IDEOGRAPH-652F)

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

Programming

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

Web

CSS
\00652F
HtmlDecimal
支
HtmlHexadecimal
支
Url
%E6%94%AF

Code

MD5
3e8ecac2d9775b0604dd197a441dda3e
Sha1
18d2086d6a025e038acbb02c6cf3cc5edad3ccb0
Base64
5pSv

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u652F';
console.log(char);  // Output: 支

Java:

char c = '\u652F';
System.out.println(c);  // Output: 支

JSON:

{"text": "\u652F"}  // Value: 支

Python:

char = '\u652F'
print(char)  # Output: 支

Perl:

my $char = "\x{652F}";
print $char;  # Output: 支

PHP:

$char = "\x{652F}";
echo $char;  // Output: 支

Ruby:

char = "\u{652F}"
puts char  # Output: 支

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25903;</p>  <!-- Display: 支 -->

HTML Hexadecimal:

<p>HTML hex: &#x652F;</p>  <!-- Display: 支 -->

URL Encoding:

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

Encodings

MD5:

3e8ecac2d9775b0604dd197a441dda3e

SHA1:

18d2086d6a025e038acbb02c6cf3cc5edad3ccb0

Base64:

5pSv