Unicode Finder

"盭" U+76ED(CJK UNIFIED IDEOGRAPH-76ED)

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

Programming

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

Web

CSS
\0076ED
HtmlDecimal
盭
HtmlHexadecimal
盭
Url
%E7%9B%AD

Code

MD5
2a63752bf3ae0608fcce194751d51f42
Sha1
c3773371863f64948d93abb4565128147005d090
Base64
55ut

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u76ED';
console.log(char);  // Output: 盭

Java:

char c = '\u76ED';
System.out.println(c);  // Output: 盭

JSON:

{"text": "\u76ED"}  // Value: 盭

Python:

char = '\u76ED'
print(char)  # Output: 盭

Perl:

my $char = "\x{76ED}";
print $char;  # Output: 盭

PHP:

$char = "\x{76ED}";
echo $char;  // Output: 盭

Ruby:

char = "\u{76ED}"
puts char  # Output: 盭

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30445;</p>  <!-- Display: 盭 -->

HTML Hexadecimal:

<p>HTML hex: &#x76ED;</p>  <!-- Display: 盭 -->

URL Encoding:

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

Encodings

MD5:

2a63752bf3ae0608fcce194751d51f42

SHA1:

c3773371863f64948d93abb4565128147005d090

Base64:

55ut