Unicode Finder

"渂" U+6E02(CJK UNIFIED IDEOGRAPH-6E02)

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

Programming

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

Web

CSS
\006E02
HtmlDecimal
渂
HtmlHexadecimal
渂
Url
%E6%B8%82

Code

MD5
25255666a745002c74db16eb56b5aba5
Sha1
16f66ea95491e7f36ac6cf9cae7af9a6750bb01e
Base64
5riC

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6E02';
console.log(char);  // Output: 渂

Java:

char c = '\u6E02';
System.out.println(c);  // Output: 渂

JSON:

{"text": "\u6E02"}  // Value: 渂

Python:

char = '\u6E02'
print(char)  # Output: 渂

Perl:

my $char = "\x{6E02}";
print $char;  # Output: 渂

PHP:

$char = "\x{6E02}";
echo $char;  // Output: 渂

Ruby:

char = "\u{6E02}"
puts char  # Output: 渂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28162;</p>  <!-- Display: 渂 -->

HTML Hexadecimal:

<p>HTML hex: &#x6E02;</p>  <!-- Display: 渂 -->

URL Encoding:

// 渂 URL encoding
https://unicodefinder.com/search.php?query=%E6%B8%82

Encodings

MD5:

25255666a745002c74db16eb56b5aba5

SHA1:

16f66ea95491e7f36ac6cf9cae7af9a6750bb01e

Base64:

5riC