Unicode Finder

"皫" U+76AB(CJK UNIFIED IDEOGRAPH-76AB)

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

Programming

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

Web

CSS
\0076AB
HtmlDecimal
皫
HtmlHexadecimal
皫
Url
%E7%9A%AB

Code

MD5
4096d5c5a58be7cc8859cfbe2bd521c1
Sha1
dfc7aae9361e436b2ffabe7f5abebeee49cccab6
Base64
55qr

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u76AB';
console.log(char);  // Output: 皫

Java:

char c = '\u76AB';
System.out.println(c);  // Output: 皫

JSON:

{"text": "\u76AB"}  // Value: 皫

Python:

char = '\u76AB'
print(char)  # Output: 皫

Perl:

my $char = "\x{76AB}";
print $char;  # Output: 皫

PHP:

$char = "\x{76AB}";
echo $char;  // Output: 皫

Ruby:

char = "\u{76AB}"
puts char  # Output: 皫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30379;</p>  <!-- Display: 皫 -->

HTML Hexadecimal:

<p>HTML hex: &#x76AB;</p>  <!-- Display: 皫 -->

URL Encoding:

// 皫 URL encoding
https://unicodefinder.com/search.php?query=%E7%9A%AB

Encodings

MD5:

4096d5c5a58be7cc8859cfbe2bd521c1

SHA1:

dfc7aae9361e436b2ffabe7f5abebeee49cccab6

Base64:

55qr