Unicode Finder

"茓" U+8313(CJK UNIFIED IDEOGRAPH-8313)

U+8313
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-8313

Programming

C
\u8313
JavaScript
\u8313
Java
\u8313
Json
\u8313
Python
\u8313
Perl
\x{8313}
PHP
\x{8313}
Ruby
\u{8313}
Rust
\u{8313}
Go
\u8313

Web

CSS
\008313
HtmlDecimal
茓
HtmlHexadecimal
茓
Url
%E8%8C%93

Code

MD5
66fdfe73da43a07bbe444733b1f3226f
Sha1
b81841f4cabc76ef4ede0c738be43b1ecb3291b1
Base64
6IyT

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u8313';
console.log(char);  // Output: 茓

Java:

char c = '\u8313';
System.out.println(c);  // Output: 茓

JSON:

{"text": "\u8313"}  // Value: 茓

Python:

char = '\u8313'
print(char)  # Output: 茓

Perl:

my $char = "\x{8313}";
print $char;  # Output: 茓

PHP:

$char = "\x{8313}";
echo $char;  // Output: 茓

Ruby:

char = "\u{8313}"
puts char  # Output: 茓

Rust:

let c = '\u{8313}';
println!("{}", c);  // Output: 茓

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\008313";  /* Display: 茓 */
}

HTML Decimal:

<p>HTML decimal: &#33555;</p>  <!-- Display: 茓 -->

HTML Hexadecimal:

<p>HTML hex: &#x8313;</p>  <!-- Display: 茓 -->

URL Encoding:

// 茓 URL encoding
https://unicodefinder.com/search.php?query=%E8%8C%93

Encodings

MD5:

66fdfe73da43a07bbe444733b1f3226f

SHA1:

b81841f4cabc76ef4ede0c738be43b1ecb3291b1

Base64:

6IyT