Unicode Finder

"菈" U+83C8(CJK UNIFIED IDEOGRAPH-83C8)

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

Programming

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

Web

CSS
\0083C8
HtmlDecimal
菈
HtmlHexadecimal
菈
Url
%E8%8F%88

Code

MD5
1cff1c52be12a7fc9e90b87bf3ed5fe6
Sha1
dd8eedee42b3b105f59abe98fdd9c9881995cbd5
Base64
6I+I

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u83C8';
console.log(char);  // Output: 菈

Java:

char c = '\u83C8';
System.out.println(c);  // Output: 菈

JSON:

{"text": "\u83C8"}  // Value: 菈

Python:

char = '\u83C8'
print(char)  # Output: 菈

Perl:

my $char = "\x{83C8}";
print $char;  # Output: 菈

PHP:

$char = "\x{83C8}";
echo $char;  // Output: 菈

Ruby:

char = "\u{83C8}"
puts char  # Output: 菈

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33736;</p>  <!-- Display: 菈 -->

HTML Hexadecimal:

<p>HTML hex: &#x83C8;</p>  <!-- Display: 菈 -->

URL Encoding:

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

Encodings

MD5:

1cff1c52be12a7fc9e90b87bf3ed5fe6

SHA1:

dd8eedee42b3b105f59abe98fdd9c9881995cbd5

Base64:

6I+I