Unicode Finder

"菆" U+83C6(CJK UNIFIED IDEOGRAPH-83C6)

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

Programming

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

Web

CSS
\0083C6
HtmlDecimal
菆
HtmlHexadecimal
菆
Url
%E8%8F%86

Code

MD5
8d428345e33e4d17db67f62e068478c8
Sha1
c18443479c14e8f65fca8f4d032c48ecceefc8be
Base64
6I+G

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u83C6';
console.log(char);  // Output: 菆

Java:

char c = '\u83C6';
System.out.println(c);  // Output: 菆

JSON:

{"text": "\u83C6"}  // Value: 菆

Python:

char = '\u83C6'
print(char)  # Output: 菆

Perl:

my $char = "\x{83C6}";
print $char;  # Output: 菆

PHP:

$char = "\x{83C6}";
echo $char;  // Output: 菆

Ruby:

char = "\u{83C6}"
puts char  # Output: 菆

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33734;</p>  <!-- Display: 菆 -->

HTML Hexadecimal:

<p>HTML hex: &#x83C6;</p>  <!-- Display: 菆 -->

URL Encoding:

// 菆 URL encoding
https://unicodefinder.com/search.php?query=%E8%8F%86

Encodings

MD5:

8d428345e33e4d17db67f62e068478c8

SHA1:

c18443479c14e8f65fca8f4d032c48ecceefc8be

Base64:

6I+G