Unicode Finder

"渌" U+6E0C(CJK UNIFIED IDEOGRAPH-6E0C)

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

Programming

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

Web

CSS
\006E0C
HtmlDecimal
渌
HtmlHexadecimal
渌
Url
%E6%B8%8C

Code

MD5
a2362995a0af00c6d7e5db53580d8428
Sha1
97f2299331867b9baa43d1eddac2cdf0f428e710
Base64
5riM

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6E0C';
console.log(char);  // Output: 渌

Java:

char c = '\u6E0C';
System.out.println(c);  // Output: 渌

JSON:

{"text": "\u6E0C"}  // Value: 渌

Python:

char = '\u6E0C'
print(char)  # Output: 渌

Perl:

my $char = "\x{6E0C}";
print $char;  # Output: 渌

PHP:

$char = "\x{6E0C}";
echo $char;  // Output: 渌

Ruby:

char = "\u{6E0C}"
puts char  # Output: 渌

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28172;</p>  <!-- Display: 渌 -->

HTML Hexadecimal:

<p>HTML hex: &#x6E0C;</p>  <!-- Display: 渌 -->

URL Encoding:

// 渌 URL encoding
https://unicodefinder.com/search.php?query=%E6%B8%8C

Encodings

MD5:

a2362995a0af00c6d7e5db53580d8428

SHA1:

97f2299331867b9baa43d1eddac2cdf0f428e710

Base64:

5riM