Unicode Finder

"本" U+672C(CJK UNIFIED IDEOGRAPH-672C)

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

Programming

C
\u672C
JavaScript
\u672C
Java
\u672C
Json
\u672C
Python
\u672C
Perl
\x{672C}
PHP
\x{672C}
Ruby
\u{672C}
Rust
\u{672C}
Go
\u672C

Web

CSS
\00672C
HtmlDecimal
本
HtmlHexadecimal
本
Url
%E6%9C%AC

Code

MD5
a4fb8425cd19033f465cd47d09504b62
Sha1
d3cc0cab9c6384f4b1d996132970f0e608061fd6
Base64
5pys

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u672C';
console.log(char);  // Output: 本

Java:

char c = '\u672C';
System.out.println(c);  // Output: 本

JSON:

{"text": "\u672C"}  // Value: 本

Python:

char = '\u672C'
print(char)  # Output: 本

Perl:

my $char = "\x{672C}";
print $char;  # Output: 本

PHP:

$char = "\x{672C}";
echo $char;  // Output: 本

Ruby:

char = "\u{672C}"
puts char  # Output: 本

Rust:

let c = '\u{672C}';
println!("{}", c);  // Output: 本

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00672C";  /* Display: 本 */
}

HTML Decimal:

<p>HTML decimal: &#26412;</p>  <!-- Display: 本 -->

HTML Hexadecimal:

<p>HTML hex: &#x672C;</p>  <!-- Display: 本 -->

URL Encoding:

// 本 URL encoding
https://unicodefinder.com/search.php?query=%E6%9C%AC

Encodings

MD5:

a4fb8425cd19033f465cd47d09504b62

SHA1:

d3cc0cab9c6384f4b1d996132970f0e608061fd6

Base64:

5pys