Unicode Finder

"莫" U+83AB(CJK UNIFIED IDEOGRAPH-83AB)

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

Programming

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

Web

CSS
\0083AB
HtmlDecimal
莫
HtmlHexadecimal
莫
Url
%E8%8E%AB

Code

MD5
8c56a7aecc136989389f51f2e66cb76a
Sha1
509fdf088dfd023d197901b6b890ac9827221505
Base64
6I6r

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u83AB';
console.log(char);  // Output: 莫

Java:

char c = '\u83AB';
System.out.println(c);  // Output: 莫

JSON:

{"text": "\u83AB"}  // Value: 莫

Python:

char = '\u83AB'
print(char)  # Output: 莫

Perl:

my $char = "\x{83AB}";
print $char;  # Output: 莫

PHP:

$char = "\x{83AB}";
echo $char;  // Output: 莫

Ruby:

char = "\u{83AB}"
puts char  # Output: 莫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33707;</p>  <!-- Display: 莫 -->

HTML Hexadecimal:

<p>HTML hex: &#x83AB;</p>  <!-- Display: 莫 -->

URL Encoding:

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

Encodings

MD5:

8c56a7aecc136989389f51f2e66cb76a

SHA1:

509fdf088dfd023d197901b6b890ac9827221505

Base64:

6I6r