Unicode Finder

"司" U+53F8(CJK UNIFIED IDEOGRAPH-53F8)

U+53F8
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-53F8

Programming

C
\u53F8
JavaScript
\u53F8
Java
\u53F8
Json
\u53F8
Python
\u53F8
Perl
\x{53F8}
PHP
\x{53F8}
Ruby
\u{53F8}
Rust
\u{53F8}
Go
\u53F8

Web

CSS
\0053F8
HtmlDecimal
司
HtmlHexadecimal
司
Url
%E5%8F%B8

Code

MD5
ac95937ea438ae66a5bc9f56b012297d
Sha1
b0c3a3f503d15f7b970a19ef2c3ad951799eca66
Base64
5Y+4

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u53F8';
console.log(char);  // Output: 司

Java:

char c = '\u53F8';
System.out.println(c);  // Output: 司

JSON:

{"text": "\u53F8"}  // Value: 司

Python:

char = '\u53F8'
print(char)  # Output: 司

Perl:

my $char = "\x{53F8}";
print $char;  # Output: 司

PHP:

$char = "\x{53F8}";
echo $char;  // Output: 司

Ruby:

char = "\u{53F8}"
puts char  # Output: 司

Rust:

let c = '\u{53F8}';
println!("{}", c);  // Output: 司

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0053F8";  /* Display: 司 */
}

HTML Decimal:

<p>HTML decimal: &#21496;</p>  <!-- Display: 司 -->

HTML Hexadecimal:

<p>HTML hex: &#x53F8;</p>  <!-- Display: 司 -->

URL Encoding:

// 司 URL encoding
https://unicodefinder.com/search.php?query=%E5%8F%B8

Encodings

MD5:

ac95937ea438ae66a5bc9f56b012297d

SHA1:

b0c3a3f503d15f7b970a19ef2c3ad951799eca66

Base64:

5Y+4