Unicode Finder

"瞻" U+77BB(CJK UNIFIED IDEOGRAPH-77BB)

U+77BB
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-77BB

Programming

C
\u77BB
JavaScript
\u77BB
Java
\u77BB
Json
\u77BB
Python
\u77BB
Perl
\x{77BB}
PHP
\x{77BB}
Ruby
\u{77BB}
Rust
\u{77BB}
Go
\u77BB

Web

CSS
\0077BB
HtmlDecimal
瞻
HtmlHexadecimal
瞻
Url
%E7%9E%BB

Code

MD5
dd99b7014915689542ee8da564be2b4d
Sha1
3426f92e6083477ced80583598946cbf0613a1c2
Base64
5567

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u77BB';
console.log(char);  // Output: 瞻

Java:

char c = '\u77BB';
System.out.println(c);  // Output: 瞻

JSON:

{"text": "\u77BB"}  // Value: 瞻

Python:

char = '\u77BB'
print(char)  # Output: 瞻

Perl:

my $char = "\x{77BB}";
print $char;  # Output: 瞻

PHP:

$char = "\x{77BB}";
echo $char;  // Output: 瞻

Ruby:

char = "\u{77BB}"
puts char  # Output: 瞻

Rust:

let c = '\u{77BB}';
println!("{}", c);  // Output: 瞻

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0077BB";  /* Display: 瞻 */
}

HTML Decimal:

<p>HTML decimal: &#30651;</p>  <!-- Display: 瞻 -->

HTML Hexadecimal:

<p>HTML hex: &#x77BB;</p>  <!-- Display: 瞻 -->

URL Encoding:

// 瞻 URL encoding
https://unicodefinder.com/search.php?query=%E7%9E%BB

Encodings

MD5:

dd99b7014915689542ee8da564be2b4d

SHA1:

3426f92e6083477ced80583598946cbf0613a1c2

Base64:

5567