Unicode Finder

"损" U+635F(CJK UNIFIED IDEOGRAPH-635F)

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

Programming

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

Web

CSS
\00635F
HtmlDecimal
损
HtmlHexadecimal
损
Url
%E6%8D%9F

Code

MD5
d6562b5525d11392a9eb36967c42639d
Sha1
83c113b25377ca52e4a777a17375642211c3ebbb
Base64
5o2f

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u635F';
console.log(char);  // Output: 损

Java:

char c = '\u635F';
System.out.println(c);  // Output: 损

JSON:

{"text": "\u635F"}  // Value: 损

Python:

char = '\u635F'
print(char)  # Output: 损

Perl:

my $char = "\x{635F}";
print $char;  # Output: 损

PHP:

$char = "\x{635F}";
echo $char;  // Output: 损

Ruby:

char = "\u{635F}"
puts char  # Output: 损

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#25439;</p>  <!-- Display: 损 -->

HTML Hexadecimal:

<p>HTML hex: &#x635F;</p>  <!-- Display: 损 -->

URL Encoding:

// 损 URL encoding
https://unicodefinder.com/search.php?query=%E6%8D%9F

Encodings

MD5:

d6562b5525d11392a9eb36967c42639d

SHA1:

83c113b25377ca52e4a777a17375642211c3ebbb

Base64:

5o2f