Unicode Finder

"疺" U+75BA(CJK UNIFIED IDEOGRAPH-75BA)

U+75BA
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-75BA

Programming

C
\u75BA
JavaScript
\u75BA
Java
\u75BA
Json
\u75BA
Python
\u75BA
Perl
\x{75BA}
PHP
\x{75BA}
Ruby
\u{75BA}
Rust
\u{75BA}
Go
\u75BA

Web

CSS
\0075BA
HtmlDecimal
疺
HtmlHexadecimal
疺
Url
%E7%96%BA

Code

MD5
d165e7761654166b706954436ef53498
Sha1
f24fef96eb7768d9f77258e4b3e8765256b473dc
Base64
55a6

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u75BA';
console.log(char);  // Output: 疺

Java:

char c = '\u75BA';
System.out.println(c);  // Output: 疺

JSON:

{"text": "\u75BA"}  // Value: 疺

Python:

char = '\u75BA'
print(char)  # Output: 疺

Perl:

my $char = "\x{75BA}";
print $char;  # Output: 疺

PHP:

$char = "\x{75BA}";
echo $char;  // Output: 疺

Ruby:

char = "\u{75BA}"
puts char  # Output: 疺

Rust:

let c = '\u{75BA}';
println!("{}", c);  // Output: 疺

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0075BA";  /* Display: 疺 */
}

HTML Decimal:

<p>HTML decimal: &#30138;</p>  <!-- Display: 疺 -->

HTML Hexadecimal:

<p>HTML hex: &#x75BA;</p>  <!-- Display: 疺 -->

URL Encoding:

// 疺 URL encoding
https://unicodefinder.com/search.php?query=%E7%96%BA

Encodings

MD5:

d165e7761654166b706954436ef53498

SHA1:

f24fef96eb7768d9f77258e4b3e8765256b473dc

Base64:

55a6