Unicode Finder

"羫" U+7FAB(CJK UNIFIED IDEOGRAPH-7FAB)

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

Programming

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

Web

CSS
\007FAB
HtmlDecimal
羫
HtmlHexadecimal
羫
Url
%E7%BE%AB

Code

MD5
d4dc4a148d34bdb259006b7d86acdb07
Sha1
eb5cd5f43d00195245eec74fb35e03fcb370d872
Base64
576r

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7FAB';
console.log(char);  // Output: 羫

Java:

char c = '\u7FAB';
System.out.println(c);  // Output: 羫

JSON:

{"text": "\u7FAB"}  // Value: 羫

Python:

char = '\u7FAB'
print(char)  # Output: 羫

Perl:

my $char = "\x{7FAB}";
print $char;  # Output: 羫

PHP:

$char = "\x{7FAB}";
echo $char;  // Output: 羫

Ruby:

char = "\u{7FAB}"
puts char  # Output: 羫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32683;</p>  <!-- Display: 羫 -->

HTML Hexadecimal:

<p>HTML hex: &#x7FAB;</p>  <!-- Display: 羫 -->

URL Encoding:

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

Encodings

MD5:

d4dc4a148d34bdb259006b7d86acdb07

SHA1:

eb5cd5f43d00195245eec74fb35e03fcb370d872

Base64:

576r