Unicode Finder

"菕" U+83D5(CJK UNIFIED IDEOGRAPH-83D5)

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

Programming

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

Web

CSS
\0083D5
HtmlDecimal
菕
HtmlHexadecimal
菕
Url
%E8%8F%95

Code

MD5
5ccee6e633dd02d88732af3465aeace6
Sha1
f9d91349ad9d419f8e4d77024ccd02aa3a0cdef8
Base64
6I+V

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u83D5';
console.log(char);  // Output: 菕

Java:

char c = '\u83D5';
System.out.println(c);  // Output: 菕

JSON:

{"text": "\u83D5"}  // Value: 菕

Python:

char = '\u83D5'
print(char)  # Output: 菕

Perl:

my $char = "\x{83D5}";
print $char;  # Output: 菕

PHP:

$char = "\x{83D5}";
echo $char;  // Output: 菕

Ruby:

char = "\u{83D5}"
puts char  # Output: 菕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33749;</p>  <!-- Display: 菕 -->

HTML Hexadecimal:

<p>HTML hex: &#x83D5;</p>  <!-- Display: 菕 -->

URL Encoding:

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

Encodings

MD5:

5ccee6e633dd02d88732af3465aeace6

SHA1:

f9d91349ad9d419f8e4d77024ccd02aa3a0cdef8

Base64:

6I+V