Unicode Finder

"瞿" U+77BF(CJK UNIFIED IDEOGRAPH-77BF)

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

Programming

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

Web

CSS
\0077BF
HtmlDecimal
瞿
HtmlHexadecimal
瞿
Url
%E7%9E%BF

Code

MD5
c908f6a5fa2c65407d7efa965de8f36f
Sha1
3c84042c18a26141e342101723ea011d2889c6dc
Base64
556/

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u77BF';
console.log(char);  // Output: 瞿

Java:

char c = '\u77BF';
System.out.println(c);  // Output: 瞿

JSON:

{"text": "\u77BF"}  // Value: 瞿

Python:

char = '\u77BF'
print(char)  # Output: 瞿

Perl:

my $char = "\x{77BF}";
print $char;  # Output: 瞿

PHP:

$char = "\x{77BF}";
echo $char;  // Output: 瞿

Ruby:

char = "\u{77BF}"
puts char  # Output: 瞿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30655;</p>  <!-- Display: 瞿 -->

HTML Hexadecimal:

<p>HTML hex: &#x77BF;</p>  <!-- Display: 瞿 -->

URL Encoding:

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

Encodings

MD5:

c908f6a5fa2c65407d7efa965de8f36f

SHA1:

3c84042c18a26141e342101723ea011d2889c6dc

Base64:

556/