Unicode Finder

"紵" U+7D35(CJK UNIFIED IDEOGRAPH-7D35)

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

Programming

C
\u7D35
JavaScript
\u7D35
Java
\u7D35
Json
\u7D35
Python
\u7D35
Perl
\x{7D35}
PHP
\x{7D35}
Ruby
\u{7D35}
Rust
\u{7D35}
Go
\u7D35

Web

CSS
\007D35
HtmlDecimal
紵
HtmlHexadecimal
紵
Url
%E7%B4%B5

Code

MD5
495af2312617ea033fb582884430460d
Sha1
0eccda4587d06cd29469dc4e9154799cdc241db3
Base64
57S1

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7D35';
console.log(char);  // Output: 紵

Java:

char c = '\u7D35';
System.out.println(c);  // Output: 紵

JSON:

{"text": "\u7D35"}  // Value: 紵

Python:

char = '\u7D35'
print(char)  # Output: 紵

Perl:

my $char = "\x{7D35}";
print $char;  # Output: 紵

PHP:

$char = "\x{7D35}";
echo $char;  // Output: 紵

Ruby:

char = "\u{7D35}"
puts char  # Output: 紵

Rust:

let c = '\u{7D35}';
println!("{}", c);  // Output: 紵

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007D35";  /* Display: 紵 */
}

HTML Decimal:

<p>HTML decimal: &#32053;</p>  <!-- Display: 紵 -->

HTML Hexadecimal:

<p>HTML hex: &#x7D35;</p>  <!-- Display: 紵 -->

URL Encoding:

// 紵 URL encoding
https://unicodefinder.com/search.php?query=%E7%B4%B5

Encodings

MD5:

495af2312617ea033fb582884430460d

SHA1:

0eccda4587d06cd29469dc4e9154799cdc241db3

Base64:

57S1