Unicode Finder

"杩" U+6769(CJK UNIFIED IDEOGRAPH-6769)

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

Programming

C
\u6769
JavaScript
\u6769
Java
\u6769
Json
\u6769
Python
\u6769
Perl
\x{6769}
PHP
\x{6769}
Ruby
\u{6769}
Rust
\u{6769}
Go
\u6769

Web

CSS
\006769
HtmlDecimal
杩
HtmlHexadecimal
杩
Url
%E6%9D%A9

Code

MD5
740845cb2f663d571264cae017d0f48a
Sha1
80aea0e87f99d7d0e03f61707802e254d4710bca
Base64
5p2p

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6769';
console.log(char);  // Output: 杩

Java:

char c = '\u6769';
System.out.println(c);  // Output: 杩

JSON:

{"text": "\u6769"}  // Value: 杩

Python:

char = '\u6769'
print(char)  # Output: 杩

Perl:

my $char = "\x{6769}";
print $char;  # Output: 杩

PHP:

$char = "\x{6769}";
echo $char;  // Output: 杩

Ruby:

char = "\u{6769}"
puts char  # Output: 杩

Rust:

let c = '\u{6769}';
println!("{}", c);  // Output: 杩

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006769";  /* Display: 杩 */
}

HTML Decimal:

<p>HTML decimal: &#26473;</p>  <!-- Display: 杩 -->

HTML Hexadecimal:

<p>HTML hex: &#x6769;</p>  <!-- Display: 杩 -->

URL Encoding:

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

Encodings

MD5:

740845cb2f663d571264cae017d0f48a

SHA1:

80aea0e87f99d7d0e03f61707802e254d4710bca

Base64:

5p2p