Unicode Finder

"諙" U+8AD9(CJK UNIFIED IDEOGRAPH-8AD9)

U+8AD9
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-8AD9

Programming

C
\u8AD9
JavaScript
\u8AD9
Java
\u8AD9
Json
\u8AD9
Python
\u8AD9
Perl
\x{8AD9}
PHP
\x{8AD9}
Ruby
\u{8AD9}
Rust
\u{8AD9}
Go
\u8AD9

Web

CSS
\008AD9
HtmlDecimal
諙
HtmlHexadecimal
諙
Url
%E8%AB%99

Code

MD5
9b01a728541377756a37f0617fe5151b
Sha1
a3ab9d8a5bee6cb67554aea6caeabe63f970921c
Base64
6KuZ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8AD9';
console.log(char);  // Output: 諙

Java:

char c = '\u8AD9';
System.out.println(c);  // Output: 諙

JSON:

{"text": "\u8AD9"}  // Value: 諙

Python:

char = '\u8AD9'
print(char)  # Output: 諙

Perl:

my $char = "\x{8AD9}";
print $char;  # Output: 諙

PHP:

$char = "\x{8AD9}";
echo $char;  // Output: 諙

Ruby:

char = "\u{8AD9}"
puts char  # Output: 諙

Rust:

let c = '\u{8AD9}';
println!("{}", c);  // Output: 諙

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008AD9";  /* Display: 諙 */
}

HTML Decimal:

<p>HTML decimal: &#35545;</p>  <!-- Display: 諙 -->

HTML Hexadecimal:

<p>HTML hex: &#x8AD9;</p>  <!-- Display: 諙 -->

URL Encoding:

// 諙 URL encoding
https://unicodefinder.com/search.php?query=%E8%AB%99

Encodings

MD5:

9b01a728541377756a37f0617fe5151b

SHA1:

a3ab9d8a5bee6cb67554aea6caeabe63f970921c

Base64:

6KuZ