Unicode Finder

"訍" U+8A0D(CJK UNIFIED IDEOGRAPH-8A0D)

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

Programming

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

Web

CSS
\008A0D
HtmlDecimal
訍
HtmlHexadecimal
訍
Url
%E8%A8%8D

Code

MD5
e279ce646f87598a0d82afb18aee807a
Sha1
fd400d2682f9f2600df18af36ddc28b85622960d
Base64
6KiN

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u8A0D';
console.log(char);  // Output: 訍

Java:

char c = '\u8A0D';
System.out.println(c);  // Output: 訍

JSON:

{"text": "\u8A0D"}  // Value: 訍

Python:

char = '\u8A0D'
print(char)  # Output: 訍

Perl:

my $char = "\x{8A0D}";
print $char;  # Output: 訍

PHP:

$char = "\x{8A0D}";
echo $char;  // Output: 訍

Ruby:

char = "\u{8A0D}"
puts char  # Output: 訍

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#35341;</p>  <!-- Display: 訍 -->

HTML Hexadecimal:

<p>HTML hex: &#x8A0D;</p>  <!-- Display: 訍 -->

URL Encoding:

// 訍 URL encoding
https://unicodefinder.com/search.php?query=%E8%A8%8D

Encodings

MD5:

e279ce646f87598a0d82afb18aee807a

SHA1:

fd400d2682f9f2600df18af36ddc28b85622960d

Base64:

6KiN