Unicode Finder

"疱" U+75B1(CJK UNIFIED IDEOGRAPH-75B1)

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

Programming

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

Web

CSS
\0075B1
HtmlDecimal
疱
HtmlHexadecimal
疱
Url
%E7%96%B1

Code

MD5
1a482eb48e414faa67e187bc3b6f0cb7
Sha1
74fb517158b4a85374e353ed213cd3a07ca148b6
Base64
55ax

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u75B1';
console.log(char);  // Output: 疱

Java:

char c = '\u75B1';
System.out.println(c);  // Output: 疱

JSON:

{"text": "\u75B1"}  // Value: 疱

Python:

char = '\u75B1'
print(char)  # Output: 疱

Perl:

my $char = "\x{75B1}";
print $char;  # Output: 疱

PHP:

$char = "\x{75B1}";
echo $char;  // Output: 疱

Ruby:

char = "\u{75B1}"
puts char  # Output: 疱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30129;</p>  <!-- Display: 疱 -->

HTML Hexadecimal:

<p>HTML hex: &#x75B1;</p>  <!-- Display: 疱 -->

URL Encoding:

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

Encodings

MD5:

1a482eb48e414faa67e187bc3b6f0cb7

SHA1:

74fb517158b4a85374e353ed213cd3a07ca148b6

Base64:

55ax