Unicode Finder

"缵" U+7F35(CJK UNIFIED IDEOGRAPH-7F35)

U+7F35
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-7F35

Programming

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

Web

CSS
\007F35
HtmlDecimal
缵
HtmlHexadecimal
缵
Url
%E7%BC%B5

Code

MD5
5a77bac6076d1274db3ccff0286fe2e0
Sha1
f17eb36b680ca1f663fbc1b9eb7b597af95c97d4
Base64
57y1

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7F35';
console.log(char);  // Output: 缵

Java:

char c = '\u7F35';
System.out.println(c);  // Output: 缵

JSON:

{"text": "\u7F35"}  // Value: 缵

Python:

char = '\u7F35'
print(char)  # Output: 缵

Perl:

my $char = "\x{7F35}";
print $char;  # Output: 缵

PHP:

$char = "\x{7F35}";
echo $char;  // Output: 缵

Ruby:

char = "\u{7F35}"
puts char  # Output: 缵

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32565;</p>  <!-- Display: 缵 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F35;</p>  <!-- Display: 缵 -->

URL Encoding:

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

Encodings

MD5:

5a77bac6076d1274db3ccff0286fe2e0

SHA1:

f17eb36b680ca1f663fbc1b9eb7b597af95c97d4

Base64:

57y1