Unicode Finder

"疫" U+75AB(CJK UNIFIED IDEOGRAPH-75AB)

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

Programming

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

Web

CSS
\0075AB
HtmlDecimal
疫
HtmlHexadecimal
疫
Url
%E7%96%AB

Code

MD5
bcae50f287eff549e37c393597768b91
Sha1
b85ea94b5b4a0aa0158b78fba5a3a57a0eee818e
Base64
55ar

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u75AB';
console.log(char);  // Output: 疫

Java:

char c = '\u75AB';
System.out.println(c);  // Output: 疫

JSON:

{"text": "\u75AB"}  // Value: 疫

Python:

char = '\u75AB'
print(char)  # Output: 疫

Perl:

my $char = "\x{75AB}";
print $char;  # Output: 疫

PHP:

$char = "\x{75AB}";
echo $char;  // Output: 疫

Ruby:

char = "\u{75AB}"
puts char  # Output: 疫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30123;</p>  <!-- Display: 疫 -->

HTML Hexadecimal:

<p>HTML hex: &#x75AB;</p>  <!-- Display: 疫 -->

URL Encoding:

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

Encodings

MD5:

bcae50f287eff549e37c393597768b91

SHA1:

b85ea94b5b4a0aa0158b78fba5a3a57a0eee818e

Base64:

55ar