Unicode Finder

"程" U+7A0B(CJK UNIFIED IDEOGRAPH-7A0B)

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

Programming

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

Web

CSS
\007A0B
HtmlDecimal
程
HtmlHexadecimal
程
Url
%E7%A8%8B

Code

MD5
2971c96735f18aeed502a04f89bd7ae7
Sha1
60fae841f672b1edcd2d1b813013ad8227127c52
Base64
56iL

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7A0B';
console.log(char);  // Output: 程

Java:

char c = '\u7A0B';
System.out.println(c);  // Output: 程

JSON:

{"text": "\u7A0B"}  // Value: 程

Python:

char = '\u7A0B'
print(char)  # Output: 程

Perl:

my $char = "\x{7A0B}";
print $char;  # Output: 程

PHP:

$char = "\x{7A0B}";
echo $char;  // Output: 程

Ruby:

char = "\u{7A0B}"
puts char  # Output: 程

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31243;</p>  <!-- Display: 程 -->

HTML Hexadecimal:

<p>HTML hex: &#x7A0B;</p>  <!-- Display: 程 -->

URL Encoding:

// 程 URL encoding
https://unicodefinder.com/search.php?query=%E7%A8%8B

Encodings

MD5:

2971c96735f18aeed502a04f89bd7ae7

SHA1:

60fae841f672b1edcd2d1b813013ad8227127c52

Base64:

56iL