Unicode Finder

"菅" U+83C5(CJK UNIFIED IDEOGRAPH-83C5)

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

Programming

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

Web

CSS
\0083C5
HtmlDecimal
菅
HtmlHexadecimal
菅
Url
%E8%8F%85

Code

MD5
a9e2411a6c09f8ad01ebe5b69f7f2590
Sha1
810eae7a50065a0c11eb44cdec219795f95a3b73
Base64
6I+F

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u83C5';
console.log(char);  // Output: 菅

Java:

char c = '\u83C5';
System.out.println(c);  // Output: 菅

JSON:

{"text": "\u83C5"}  // Value: 菅

Python:

char = '\u83C5'
print(char)  # Output: 菅

Perl:

my $char = "\x{83C5}";
print $char;  # Output: 菅

PHP:

$char = "\x{83C5}";
echo $char;  // Output: 菅

Ruby:

char = "\u{83C5}"
puts char  # Output: 菅

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#33733;</p>  <!-- Display: 菅 -->

HTML Hexadecimal:

<p>HTML hex: &#x83C5;</p>  <!-- Display: 菅 -->

URL Encoding:

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

Encodings

MD5:

a9e2411a6c09f8ad01ebe5b69f7f2590

SHA1:

810eae7a50065a0c11eb44cdec219795f95a3b73

Base64:

6I+F