Unicode Finder

"绎" U+7ECE(CJK UNIFIED IDEOGRAPH-7ECE)

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

Programming

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

Web

CSS
\007ECE
HtmlDecimal
绎
HtmlHexadecimal
绎
Url
%E7%BB%8E

Code

MD5
df896b79ce8031c049cc69f932c707cc
Sha1
bb954133938102e6dae869cbd9623a5ed77be5d9
Base64
57uO

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7ECE';
console.log(char);  // Output: 绎

Java:

char c = '\u7ECE';
System.out.println(c);  // Output: 绎

JSON:

{"text": "\u7ECE"}  // Value: 绎

Python:

char = '\u7ECE'
print(char)  # Output: 绎

Perl:

my $char = "\x{7ECE}";
print $char;  # Output: 绎

PHP:

$char = "\x{7ECE}";
echo $char;  // Output: 绎

Ruby:

char = "\u{7ECE}"
puts char  # Output: 绎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32462;</p>  <!-- Display: 绎 -->

HTML Hexadecimal:

<p>HTML hex: &#x7ECE;</p>  <!-- Display: 绎 -->

URL Encoding:

// 绎 URL encoding
https://unicodefinder.com/search.php?query=%E7%BB%8E

Encodings

MD5:

df896b79ce8031c049cc69f932c707cc

SHA1:

bb954133938102e6dae869cbd9623a5ed77be5d9

Base64:

57uO