Unicode Finder

"琵" U+7435(CJK UNIFIED IDEOGRAPH-7435)

U+7435
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7435

Programming

C
\u7435
JavaScript
\u7435
Java
\u7435
Json
\u7435
Python
\u7435
Perl
\x{7435}
PHP
\x{7435}
Ruby
\u{7435}
Rust
\u{7435}
Go
\u7435

Web

CSS
\007435
HtmlDecimal
琵
HtmlHexadecimal
琵
Url
%E7%90%B5

Code

MD5
53203300f121f8e552f95aee96293c1b
Sha1
255bcbfaf9cb97cbe5e9616feb5730f62d77afbb
Base64
55C1

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7435';
console.log(char);  // Output: 琵

Java:

char c = '\u7435';
System.out.println(c);  // Output: 琵

JSON:

{"text": "\u7435"}  // Value: 琵

Python:

char = '\u7435'
print(char)  # Output: 琵

Perl:

my $char = "\x{7435}";
print $char;  # Output: 琵

PHP:

$char = "\x{7435}";
echo $char;  // Output: 琵

Ruby:

char = "\u{7435}"
puts char  # Output: 琵

Rust:

let c = '\u{7435}';
println!("{}", c);  // Output: 琵

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007435";  /* Display: 琵 */
}

HTML Decimal:

<p>HTML decimal: &#29749;</p>  <!-- Display: 琵 -->

HTML Hexadecimal:

<p>HTML hex: &#x7435;</p>  <!-- Display: 琵 -->

URL Encoding:

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

Encodings

MD5:

53203300f121f8e552f95aee96293c1b

SHA1:

255bcbfaf9cb97cbe5e9616feb5730f62d77afbb

Base64:

55C1