Unicode Finder

"羯" U+7FAF(CJK UNIFIED IDEOGRAPH-7FAF)

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

Programming

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

Web

CSS
\007FAF
HtmlDecimal
羯
HtmlHexadecimal
羯
Url
%E7%BE%AF

Code

MD5
411abeb7f1b60154b32e04e592724736
Sha1
a20ef82efeacb4d29cb72508f862443b8c095096
Base64
576v

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7FAF';
console.log(char);  // Output: 羯

Java:

char c = '\u7FAF';
System.out.println(c);  // Output: 羯

JSON:

{"text": "\u7FAF"}  // Value: 羯

Python:

char = '\u7FAF'
print(char)  # Output: 羯

Perl:

my $char = "\x{7FAF}";
print $char;  # Output: 羯

PHP:

$char = "\x{7FAF}";
echo $char;  // Output: 羯

Ruby:

char = "\u{7FAF}"
puts char  # Output: 羯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32687;</p>  <!-- Display: 羯 -->

HTML Hexadecimal:

<p>HTML hex: &#x7FAF;</p>  <!-- Display: 羯 -->

URL Encoding:

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

Encodings

MD5:

411abeb7f1b60154b32e04e592724736

SHA1:

a20ef82efeacb4d29cb72508f862443b8c095096

Base64:

576v