Unicode Finder

"疿" U+75BF(CJK UNIFIED IDEOGRAPH-75BF)

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

Programming

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

Web

CSS
\0075BF
HtmlDecimal
疿
HtmlHexadecimal
疿
Url
%E7%96%BF

Code

MD5
68203853e0914d6c14a04170c5b58610
Sha1
276f6bf6f60013f7ad9f607a9cc9ef686f8fdc26
Base64
55a/

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u75BF';
console.log(char);  // Output: 疿

Java:

char c = '\u75BF';
System.out.println(c);  // Output: 疿

JSON:

{"text": "\u75BF"}  // Value: 疿

Python:

char = '\u75BF'
print(char)  # Output: 疿

Perl:

my $char = "\x{75BF}";
print $char;  # Output: 疿

PHP:

$char = "\x{75BF}";
echo $char;  // Output: 疿

Ruby:

char = "\u{75BF}"
puts char  # Output: 疿

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30143;</p>  <!-- Display: 疿 -->

HTML Hexadecimal:

<p>HTML hex: &#x75BF;</p>  <!-- Display: 疿 -->

URL Encoding:

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

Encodings

MD5:

68203853e0914d6c14a04170c5b58610

SHA1:

276f6bf6f60013f7ad9f607a9cc9ef686f8fdc26

Base64:

55a/