Unicode Finder

"臬" U+81EC(CJK UNIFIED IDEOGRAPH-81EC)

U+81EC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-81EC

Programming

C
\u81EC
JavaScript
\u81EC
Java
\u81EC
Json
\u81EC
Python
\u81EC
Perl
\x{81EC}
PHP
\x{81EC}
Ruby
\u{81EC}
Rust
\u{81EC}
Go
\u81EC

Web

CSS
\0081EC
HtmlDecimal
臬
HtmlHexadecimal
臬
Url
%E8%87%AC

Code

MD5
a43076172bea6864f0903c659aba7ce8
Sha1
fb35265888b3cdd1ea53c97e42e1e9e0d5b22c24
Base64
6Ies

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u81EC';
console.log(char);  // Output: 臬

Java:

char c = '\u81EC';
System.out.println(c);  // Output: 臬

JSON:

{"text": "\u81EC"}  // Value: 臬

Python:

char = '\u81EC'
print(char)  # Output: 臬

Perl:

my $char = "\x{81EC}";
print $char;  # Output: 臬

PHP:

$char = "\x{81EC}";
echo $char;  // Output: 臬

Ruby:

char = "\u{81EC}"
puts char  # Output: 臬

Rust:

let c = '\u{81EC}';
println!("{}", c);  // Output: 臬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0081EC";  /* Display: 臬 */
}

HTML Decimal:

<p>HTML decimal: &#33260;</p>  <!-- Display: 臬 -->

HTML Hexadecimal:

<p>HTML hex: &#x81EC;</p>  <!-- Display: 臬 -->

URL Encoding:

// 臬 URL encoding
https://unicodefinder.com/search.php?query=%E8%87%AC

Encodings

MD5:

a43076172bea6864f0903c659aba7ce8

SHA1:

fb35265888b3cdd1ea53c97e42e1e9e0d5b22c24

Base64:

6Ies