Unicode Finder

"瞏" U+778F(CJK UNIFIED IDEOGRAPH-778F)

U+778F
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-778F

Programming

C
\u778F
JavaScript
\u778F
Java
\u778F
Json
\u778F
Python
\u778F
Perl
\x{778F}
PHP
\x{778F}
Ruby
\u{778F}
Rust
\u{778F}
Go
\u778F

Web

CSS
\00778F
HtmlDecimal
瞏
HtmlHexadecimal
瞏
Url
%E7%9E%8F

Code

MD5
105f6cdb7a80ca9793ba4101c6f1ddb8
Sha1
df4c0fbfd98f47098556499b0624dc8617a448ea
Base64
556P

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u778F';
console.log(char);  // Output: 瞏

Java:

char c = '\u778F';
System.out.println(c);  // Output: 瞏

JSON:

{"text": "\u778F"}  // Value: 瞏

Python:

char = '\u778F'
print(char)  # Output: 瞏

Perl:

my $char = "\x{778F}";
print $char;  # Output: 瞏

PHP:

$char = "\x{778F}";
echo $char;  // Output: 瞏

Ruby:

char = "\u{778F}"
puts char  # Output: 瞏

Rust:

let c = '\u{778F}';
println!("{}", c);  // Output: 瞏

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00778F";  /* Display: 瞏 */
}

HTML Decimal:

<p>HTML decimal: &#30607;</p>  <!-- Display: 瞏 -->

HTML Hexadecimal:

<p>HTML hex: &#x778F;</p>  <!-- Display: 瞏 -->

URL Encoding:

// 瞏 URL encoding
https://unicodefinder.com/search.php?query=%E7%9E%8F

Encodings

MD5:

105f6cdb7a80ca9793ba4101c6f1ddb8

SHA1:

df4c0fbfd98f47098556499b0624dc8617a448ea

Base64:

556P