Unicode Finder

"筈" U+7B48(CJK UNIFIED IDEOGRAPH-7B48)

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

Programming

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

Web

CSS
\007B48
HtmlDecimal
筈
HtmlHexadecimal
筈
Url
%E7%AD%88

Code

MD5
3f181bd8670395b6de19c4b4ed55ed25
Sha1
0a9dad582fd1606cb10dba0e528e3b049d425bf1
Base64
562I

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7B48';
console.log(char);  // Output: 筈

Java:

char c = '\u7B48';
System.out.println(c);  // Output: 筈

JSON:

{"text": "\u7B48"}  // Value: 筈

Python:

char = '\u7B48'
print(char)  # Output: 筈

Perl:

my $char = "\x{7B48}";
print $char;  # Output: 筈

PHP:

$char = "\x{7B48}";
echo $char;  // Output: 筈

Ruby:

char = "\u{7B48}"
puts char  # Output: 筈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31560;</p>  <!-- Display: 筈 -->

HTML Hexadecimal:

<p>HTML hex: &#x7B48;</p>  <!-- Display: 筈 -->

URL Encoding:

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

Encodings

MD5:

3f181bd8670395b6de19c4b4ed55ed25

SHA1:

0a9dad582fd1606cb10dba0e528e3b049d425bf1

Base64:

562I