Unicode Finder

"硋" U+784B(CJK UNIFIED IDEOGRAPH-784B)

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

Programming

C
\u784B
JavaScript
\u784B
Java
\u784B
Json
\u784B
Python
\u784B
Perl
\x{784B}
PHP
\x{784B}
Ruby
\u{784B}
Rust
\u{784B}
Go
\u784B

Web

CSS
\00784B
HtmlDecimal
硋
HtmlHexadecimal
硋
Url
%E7%A1%8B

Code

MD5
6947043187f00e4d2cc3bc4cfb7664d6
Sha1
1c9b7b79f5e27b4af7db2cc8997199d890438e5b
Base64
56GL

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u784B';
console.log(char);  // Output: 硋

Java:

char c = '\u784B';
System.out.println(c);  // Output: 硋

JSON:

{"text": "\u784B"}  // Value: 硋

Python:

char = '\u784B'
print(char)  # Output: 硋

Perl:

my $char = "\x{784B}";
print $char;  # Output: 硋

PHP:

$char = "\x{784B}";
echo $char;  // Output: 硋

Ruby:

char = "\u{784B}"
puts char  # Output: 硋

Rust:

let c = '\u{784B}';
println!("{}", c);  // Output: 硋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00784B";  /* Display: 硋 */
}

HTML Decimal:

<p>HTML decimal: &#30795;</p>  <!-- Display: 硋 -->

HTML Hexadecimal:

<p>HTML hex: &#x784B;</p>  <!-- Display: 硋 -->

URL Encoding:

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

Encodings

MD5:

6947043187f00e4d2cc3bc4cfb7664d6

SHA1:

1c9b7b79f5e27b4af7db2cc8997199d890438e5b

Base64:

56GL