Unicode Finder

"颫" U+98AB(CJK UNIFIED IDEOGRAPH-98AB)

U+98AB
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-98AB

Programming

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

Web

CSS
\0098AB
HtmlDecimal
颫
HtmlHexadecimal
颫
Url
%E9%A2%AB

Code

MD5
05ef2a0bc53b356ab8a25944c2e61d73
Sha1
2e452a0f78e039632007e782bf6a2260f4e0cb13
Base64
6aKr

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u98AB';
console.log(char);  // Output: 颫

Java:

char c = '\u98AB';
System.out.println(c);  // Output: 颫

JSON:

{"text": "\u98AB"}  // Value: 颫

Python:

char = '\u98AB'
print(char)  # Output: 颫

Perl:

my $char = "\x{98AB}";
print $char;  # Output: 颫

PHP:

$char = "\x{98AB}";
echo $char;  // Output: 颫

Ruby:

char = "\u{98AB}"
puts char  # Output: 颫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#39083;</p>  <!-- Display: 颫 -->

HTML Hexadecimal:

<p>HTML hex: &#x98AB;</p>  <!-- Display: 颫 -->

URL Encoding:

// 颫 URL encoding
https://unicodefinder.com/search.php?query=%E9%A2%AB

Encodings

MD5:

05ef2a0bc53b356ab8a25944c2e61d73

SHA1:

2e452a0f78e039632007e782bf6a2260f4e0cb13

Base64:

6aKr