Unicode Finder

"畈" U+7548(CJK UNIFIED IDEOGRAPH-7548)

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

Programming

C
\u7548
JavaScript
\u7548
Java
\u7548
Json
\u7548
Python
\u7548
Perl
\x{7548}
PHP
\x{7548}
Ruby
\u{7548}
Rust
\u{7548}
Go
\u7548

Web

CSS
\007548
HtmlDecimal
畈
HtmlHexadecimal
畈
Url
%E7%95%88

Code

MD5
84d063e55488a83c5d8775c6a60c0855
Sha1
c39842aa667585aa670df4dee916807d9e4b2fd4
Base64
55WI

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7548';
console.log(char);  // Output: 畈

Java:

char c = '\u7548';
System.out.println(c);  // Output: 畈

JSON:

{"text": "\u7548"}  // Value: 畈

Python:

char = '\u7548'
print(char)  # Output: 畈

Perl:

my $char = "\x{7548}";
print $char;  # Output: 畈

PHP:

$char = "\x{7548}";
echo $char;  // Output: 畈

Ruby:

char = "\u{7548}"
puts char  # Output: 畈

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007548";  /* Display: 畈 */
}

HTML Decimal:

<p>HTML decimal: &#30024;</p>  <!-- Display: 畈 -->

HTML Hexadecimal:

<p>HTML hex: &#x7548;</p>  <!-- Display: 畈 -->

URL Encoding:

// 畈 URL encoding
https://unicodefinder.com/search.php?query=%E7%95%88

Encodings

MD5:

84d063e55488a83c5d8775c6a60c0855

SHA1:

c39842aa667585aa670df4dee916807d9e4b2fd4

Base64:

55WI