Unicode Finder

"羬" U+7FAC(CJK UNIFIED IDEOGRAPH-7FAC)

U+7FAC
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7FAC

Programming

C
\u7FAC
JavaScript
\u7FAC
Java
\u7FAC
Json
\u7FAC
Python
\u7FAC
Perl
\x{7FAC}
PHP
\x{7FAC}
Ruby
\u{7FAC}
Rust
\u{7FAC}
Go
\u7FAC

Web

CSS
\007FAC
HtmlDecimal
羬
HtmlHexadecimal
羬
Url
%E7%BE%AC

Code

MD5
c0c2e71e7cb3004d39fe844e46eac64c
Sha1
b800b9d901f204bea43072957dd9dbd763e4dfc1
Base64
576s

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7FAC';
console.log(char);  // Output: 羬

Java:

char c = '\u7FAC';
System.out.println(c);  // Output: 羬

JSON:

{"text": "\u7FAC"}  // Value: 羬

Python:

char = '\u7FAC'
print(char)  # Output: 羬

Perl:

my $char = "\x{7FAC}";
print $char;  # Output: 羬

PHP:

$char = "\x{7FAC}";
echo $char;  // Output: 羬

Ruby:

char = "\u{7FAC}"
puts char  # Output: 羬

Rust:

let c = '\u{7FAC}';
println!("{}", c);  // Output: 羬

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007FAC";  /* Display: 羬 */
}

HTML Decimal:

<p>HTML decimal: &#32684;</p>  <!-- Display: 羬 -->

HTML Hexadecimal:

<p>HTML hex: &#x7FAC;</p>  <!-- Display: 羬 -->

URL Encoding:

// 羬 URL encoding
https://unicodefinder.com/search.php?query=%E7%BE%AC

Encodings

MD5:

c0c2e71e7cb3004d39fe844e46eac64c

SHA1:

b800b9d901f204bea43072957dd9dbd763e4dfc1

Base64:

576s