Unicode Finder

"畬" U+756C(CJK UNIFIED IDEOGRAPH-756C)

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

Programming

C
\u756C
JavaScript
\u756C
Java
\u756C
Json
\u756C
Python
\u756C
Perl
\x{756C}
PHP
\x{756C}
Ruby
\u{756C}
Rust
\u{756C}
Go
\u756C

Web

CSS
\00756C
HtmlDecimal
畬
HtmlHexadecimal
畬
Url
%E7%95%AC

Code

MD5
11c980afff9c307094ff4bdf20117301
Sha1
2f144a0467ebf3b83f9c78afa006b7afee5c0253
Base64
55Ws

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u756C';
console.log(char);  // Output: 畬

Java:

char c = '\u756C';
System.out.println(c);  // Output: 畬

JSON:

{"text": "\u756C"}  // Value: 畬

Python:

char = '\u756C'
print(char)  # Output: 畬

Perl:

my $char = "\x{756C}";
print $char;  # Output: 畬

PHP:

$char = "\x{756C}";
echo $char;  // Output: 畬

Ruby:

char = "\u{756C}"
puts char  # Output: 畬

Rust:

let c = '\u{756C}';
println!("{}", c);  // Output: 畬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00756C";  /* Display: 畬 */
}

HTML Decimal:

<p>HTML decimal: &#30060;</p>  <!-- Display: 畬 -->

HTML Hexadecimal:

<p>HTML hex: &#x756C;</p>  <!-- Display: 畬 -->

URL Encoding:

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

Encodings

MD5:

11c980afff9c307094ff4bdf20117301

SHA1:

2f144a0467ebf3b83f9c78afa006b7afee5c0253

Base64:

55Ws