Unicode Finder

"盿" U+76FF(CJK UNIFIED IDEOGRAPH-76FF)

U+76FF
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-76FF

Programming

C
\u76FF
JavaScript
\u76FF
Java
\u76FF
Json
\u76FF
Python
\u76FF
Perl
\x{76FF}
PHP
\x{76FF}
Ruby
\u{76FF}
Rust
\u{76FF}
Go
\u76FF

Web

CSS
\0076FF
HtmlDecimal
盿
HtmlHexadecimal
盿
Url
%E7%9B%BF

Code

MD5
56d1ebbf6a810885d50f6737c6ee7ec9
Sha1
8e68de8b4642c9063b641acd1a788f7afebe5488
Base64
55u/

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u76FF';
console.log(char);  // Output: 盿

Java:

char c = '\u76FF';
System.out.println(c);  // Output: 盿

JSON:

{"text": "\u76FF"}  // Value: 盿

Python:

char = '\u76FF'
print(char)  # Output: 盿

Perl:

my $char = "\x{76FF}";
print $char;  # Output: 盿

PHP:

$char = "\x{76FF}";
echo $char;  // Output: 盿

Ruby:

char = "\u{76FF}"
puts char  # Output: 盿

Rust:

let c = '\u{76FF}';
println!("{}", c);  // Output: 盿

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0076FF";  /* Display: 盿 */
}

HTML Decimal:

<p>HTML decimal: &#30463;</p>  <!-- Display: 盿 -->

HTML Hexadecimal:

<p>HTML hex: &#x76FF;</p>  <!-- Display: 盿 -->

URL Encoding:

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

Encodings

MD5:

56d1ebbf6a810885d50f6737c6ee7ec9

SHA1:

8e68de8b4642c9063b641acd1a788f7afebe5488

Base64:

55u/