Unicode Finder

"違" U+9055(CJK UNIFIED IDEOGRAPH-9055)

U+9055
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-9055

Programming

C
\u9055
JavaScript
\u9055
Java
\u9055
Json
\u9055
Python
\u9055
Perl
\x{9055}
PHP
\x{9055}
Ruby
\u{9055}
Rust
\u{9055}
Go
\u9055

Web

CSS
\009055
HtmlDecimal
違
HtmlHexadecimal
違
Url
%E9%81%95

Code

MD5
c436c94a2e8a6c87fc5f536b107dd30d
Sha1
f23e150ee3be29b0f5b1384e65add95581db8445
Base64
6YGV

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u9055';
console.log(char);  // Output: 違

Java:

char c = '\u9055';
System.out.println(c);  // Output: 違

JSON:

{"text": "\u9055"}  // Value: 違

Python:

char = '\u9055'
print(char)  # Output: 違

Perl:

my $char = "\x{9055}";
print $char;  # Output: 違

PHP:

$char = "\x{9055}";
echo $char;  // Output: 違

Ruby:

char = "\u{9055}"
puts char  # Output: 違

Rust:

let c = '\u{9055}';
println!("{}", c);  // Output: 違

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\009055";  /* Display: 違 */
}

HTML Decimal:

<p>HTML decimal: &#36949;</p>  <!-- Display: 違 -->

HTML Hexadecimal:

<p>HTML hex: &#x9055;</p>  <!-- Display: 違 -->

URL Encoding:

// 違 URL encoding
https://unicodefinder.com/search.php?query=%E9%81%95

Encodings

MD5:

c436c94a2e8a6c87fc5f536b107dd30d

SHA1:

f23e150ee3be29b0f5b1384e65add95581db8445

Base64:

6YGV