Unicode Finder

"渝" U+6E1D(CJK UNIFIED IDEOGRAPH-6E1D)

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

Programming

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

Web

CSS
\006E1D
HtmlDecimal
渝
HtmlHexadecimal
渝
Url
%E6%B8%9D

Code

MD5
e74f901ef333f0e97c67b2b10ce807f6
Sha1
dd23c2fca7263dae6e963a8af5199923468c14f5
Base64
5rid

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6E1D';
console.log(char);  // Output: 渝

Java:

char c = '\u6E1D';
System.out.println(c);  // Output: 渝

JSON:

{"text": "\u6E1D"}  // Value: 渝

Python:

char = '\u6E1D'
print(char)  # Output: 渝

Perl:

my $char = "\x{6E1D}";
print $char;  # Output: 渝

PHP:

$char = "\x{6E1D}";
echo $char;  // Output: 渝

Ruby:

char = "\u{6E1D}"
puts char  # Output: 渝

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#28189;</p>  <!-- Display: 渝 -->

HTML Hexadecimal:

<p>HTML hex: &#x6E1D;</p>  <!-- Display: 渝 -->

URL Encoding:

// 渝 URL encoding
https://unicodefinder.com/search.php?query=%E6%B8%9D

Encodings

MD5:

e74f901ef333f0e97c67b2b10ce807f6

SHA1:

dd23c2fca7263dae6e963a8af5199923468c14f5

Base64:

5rid