Unicode Finder

"菄" U+83C4(CJK UNIFIED IDEOGRAPH-83C4)

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

Programming

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

Web

CSS
\0083C4
HtmlDecimal
菄
HtmlHexadecimal
菄
Url
%E8%8F%84

Code

MD5
298f82ef4564dd6b5c4ebc40b8943891
Sha1
f8c19d805ba09ac6f833b6dd8ff098316d6173f9
Base64
6I+E

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u83C4';
console.log(char);  // Output: 菄

Java:

char c = '\u83C4';
System.out.println(c);  // Output: 菄

JSON:

{"text": "\u83C4"}  // Value: 菄

Python:

char = '\u83C4'
print(char)  # Output: 菄

Perl:

my $char = "\x{83C4}";
print $char;  # Output: 菄

PHP:

$char = "\x{83C4}";
echo $char;  // Output: 菄

Ruby:

char = "\u{83C4}"
puts char  # Output: 菄

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33732;</p>  <!-- Display: 菄 -->

HTML Hexadecimal:

<p>HTML hex: &#x83C4;</p>  <!-- Display: 菄 -->

URL Encoding:

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

Encodings

MD5:

298f82ef4564dd6b5c4ebc40b8943891

SHA1:

f8c19d805ba09ac6f833b6dd8ff098316d6173f9

Base64:

6I+E