Unicode Finder

"溢" U+6EA2(CJK UNIFIED IDEOGRAPH-6EA2)

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

Programming

C
\u6EA2
JavaScript
\u6EA2
Java
\u6EA2
Json
\u6EA2
Python
\u6EA2
Perl
\x{6EA2}
PHP
\x{6EA2}
Ruby
\u{6EA2}
Rust
\u{6EA2}
Go
\u6EA2

Web

CSS
\006EA2
HtmlDecimal
溢
HtmlHexadecimal
溢
Url
%E6%BA%A2

Code

MD5
e9ee47f8e2d40dda417114b4189f0c22
Sha1
e52d3272c30bfbef28b27b61122bf3162b10f56d
Base64
5rqi

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6EA2';
console.log(char);  // Output: 溢

Java:

char c = '\u6EA2';
System.out.println(c);  // Output: 溢

JSON:

{"text": "\u6EA2"}  // Value: 溢

Python:

char = '\u6EA2'
print(char)  # Output: 溢

Perl:

my $char = "\x{6EA2}";
print $char;  # Output: 溢

PHP:

$char = "\x{6EA2}";
echo $char;  // Output: 溢

Ruby:

char = "\u{6EA2}"
puts char  # Output: 溢

Rust:

let c = '\u{6EA2}';
println!("{}", c);  // Output: 溢

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006EA2";  /* Display: 溢 */
}

HTML Decimal:

<p>HTML decimal: &#28322;</p>  <!-- Display: 溢 -->

HTML Hexadecimal:

<p>HTML hex: &#x6EA2;</p>  <!-- Display: 溢 -->

URL Encoding:

// 溢 URL encoding
https://unicodefinder.com/search.php?query=%E6%BA%A2

Encodings

MD5:

e9ee47f8e2d40dda417114b4189f0c22

SHA1:

e52d3272c30bfbef28b27b61122bf3162b10f56d

Base64:

5rqi