Unicode Finder

"杴" U+6774(CJK UNIFIED IDEOGRAPH-6774)

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

Programming

C
\u6774
JavaScript
\u6774
Java
\u6774
Json
\u6774
Python
\u6774
Perl
\x{6774}
PHP
\x{6774}
Ruby
\u{6774}
Rust
\u{6774}
Go
\u6774

Web

CSS
\006774
HtmlDecimal
杴
HtmlHexadecimal
杴
Url
%E6%9D%B4

Code

MD5
4fc67348916c0991280a691ad2ce2b9a
Sha1
25093d8f58b0036aa8e0814d0c5880daab429aa0
Base64
5p20

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u6774';
console.log(char);  // Output: 杴

Java:

char c = '\u6774';
System.out.println(c);  // Output: 杴

JSON:

{"text": "\u6774"}  // Value: 杴

Python:

char = '\u6774'
print(char)  # Output: 杴

Perl:

my $char = "\x{6774}";
print $char;  # Output: 杴

PHP:

$char = "\x{6774}";
echo $char;  // Output: 杴

Ruby:

char = "\u{6774}"
puts char  # Output: 杴

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006774";  /* Display: 杴 */
}

HTML Decimal:

<p>HTML decimal: &#26484;</p>  <!-- Display: 杴 -->

HTML Hexadecimal:

<p>HTML hex: &#x6774;</p>  <!-- Display: 杴 -->

URL Encoding:

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

Encodings

MD5:

4fc67348916c0991280a691ad2ce2b9a

SHA1:

25093d8f58b0036aa8e0814d0c5880daab429aa0

Base64:

5p20