Unicode Finder

"筴" U+7B74(CJK UNIFIED IDEOGRAPH-7B74)

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

Programming

C
\u7B74
JavaScript
\u7B74
Java
\u7B74
Json
\u7B74
Python
\u7B74
Perl
\x{7B74}
PHP
\x{7B74}
Ruby
\u{7B74}
Rust
\u{7B74}
Go
\u7B74

Web

CSS
\007B74
HtmlDecimal
筴
HtmlHexadecimal
筴
Url
%E7%AD%B4

Code

MD5
05a0255617133dced28d5df920496e47
Sha1
143874c50f0ebb0e62ed157ed570f7e0e7374106
Base64
5620

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7B74';
console.log(char);  // Output: 筴

Java:

char c = '\u7B74';
System.out.println(c);  // Output: 筴

JSON:

{"text": "\u7B74"}  // Value: 筴

Python:

char = '\u7B74'
print(char)  # Output: 筴

Perl:

my $char = "\x{7B74}";
print $char;  # Output: 筴

PHP:

$char = "\x{7B74}";
echo $char;  // Output: 筴

Ruby:

char = "\u{7B74}"
puts char  # Output: 筴

Rust:

let c = '\u{7B74}';
println!("{}", c);  // Output: 筴

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007B74";  /* Display: 筴 */
}

HTML Decimal:

<p>HTML decimal: &#31604;</p>  <!-- Display: 筴 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B74;</p>  <!-- Display: 筴 -->

URL Encoding:

// 筴 URL encoding
https://unicodefinder.com/search.php?query=%E7%AD%B4

Encodings

MD5:

05a0255617133dced28d5df920496e47

SHA1:

143874c50f0ebb0e62ed157ed570f7e0e7374106

Base64:

5620