Unicode Finder

"莯" U+83AF(CJK UNIFIED IDEOGRAPH-83AF)

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

Programming

C
\u83AF
JavaScript
\u83AF
Java
\u83AF
Json
\u83AF
Python
\u83AF
Perl
\x{83AF}
PHP
\x{83AF}
Ruby
\u{83AF}
Rust
\u{83AF}
Go
\u83AF

Web

CSS
\0083AF
HtmlDecimal
莯
HtmlHexadecimal
莯
Url
%E8%8E%AF

Code

MD5
3d341230989f1b526c1e5502c43a8322
Sha1
2de0e1cc98b93f008ca5b9c3d6a7796020b560df
Base64
6I6v

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u83AF';
console.log(char);  // Output: 莯

Java:

char c = '\u83AF';
System.out.println(c);  // Output: 莯

JSON:

{"text": "\u83AF"}  // Value: 莯

Python:

char = '\u83AF'
print(char)  # Output: 莯

Perl:

my $char = "\x{83AF}";
print $char;  # Output: 莯

PHP:

$char = "\x{83AF}";
echo $char;  // Output: 莯

Ruby:

char = "\u{83AF}"
puts char  # Output: 莯

Rust:

let c = '\u{83AF}';
println!("{}", c);  // Output: 莯

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0083AF";  /* Display: 莯 */
}

HTML Decimal:

<p>HTML decimal: &#33711;</p>  <!-- Display: 莯 -->

HTML Hexadecimal:

<p>HTML hex: &#x83AF;</p>  <!-- Display: 莯 -->

URL Encoding:

// 莯 URL encoding
https://unicodefinder.com/search.php?query=%E8%8E%AF

Encodings

MD5:

3d341230989f1b526c1e5502c43a8322

SHA1:

2de0e1cc98b93f008ca5b9c3d6a7796020b560df

Base64:

6I6v