Unicode Finder

"碶" U+78B6(CJK UNIFIED IDEOGRAPH-78B6)

U+78B6
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-78B6

Programming

C
\u78B6
JavaScript
\u78B6
Java
\u78B6
Json
\u78B6
Python
\u78B6
Perl
\x{78B6}
PHP
\x{78B6}
Ruby
\u{78B6}
Rust
\u{78B6}
Go
\u78B6

Web

CSS
\0078B6
HtmlDecimal
碶
HtmlHexadecimal
碶
Url
%E7%A2%B6

Code

MD5
04192f46b765e03e388dd23c03271613
Sha1
c37d9862db658b94010f8fafca0bb7f60848f8e2
Base64
56K2

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u78B6';
console.log(char);  // Output: 碶

Java:

char c = '\u78B6';
System.out.println(c);  // Output: 碶

JSON:

{"text": "\u78B6"}  // Value: 碶

Python:

char = '\u78B6'
print(char)  # Output: 碶

Perl:

my $char = "\x{78B6}";
print $char;  # Output: 碶

PHP:

$char = "\x{78B6}";
echo $char;  // Output: 碶

Ruby:

char = "\u{78B6}"
puts char  # Output: 碶

Rust:

let c = '\u{78B6}';
println!("{}", c);  // Output: 碶

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0078B6";  /* Display: 碶 */
}

HTML Decimal:

<p>HTML decimal: &#30902;</p>  <!-- Display: 碶 -->

HTML Hexadecimal:

<p>HTML hex: &#x78B6;</p>  <!-- Display: 碶 -->

URL Encoding:

// 碶 URL encoding
https://unicodefinder.com/search.php?query=%E7%A2%B6

Encodings

MD5:

04192f46b765e03e388dd23c03271613

SHA1:

c37d9862db658b94010f8fafca0bb7f60848f8e2

Base64:

56K2