Unicode Finder

"境" U+5883(CJK UNIFIED IDEOGRAPH-5883)

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

Programming

C
\u5883
JavaScript
\u5883
Java
\u5883
Json
\u5883
Python
\u5883
Perl
\x{5883}
PHP
\x{5883}
Ruby
\u{5883}
Rust
\u{5883}
Go
\u5883

Web

CSS
\005883
HtmlDecimal
境
HtmlHexadecimal
境
Url
%E5%A2%83

Code

MD5
e8da851469c77e6c323723b02bebb7cb
Sha1
8b008e3b6e867aa0eebaa20394dbde075de9d7ec
Base64
5aKD

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5883';
console.log(char);  // Output: 境

Java:

char c = '\u5883';
System.out.println(c);  // Output: 境

JSON:

{"text": "\u5883"}  // Value: 境

Python:

char = '\u5883'
print(char)  # Output: 境

Perl:

my $char = "\x{5883}";
print $char;  # Output: 境

PHP:

$char = "\x{5883}";
echo $char;  // Output: 境

Ruby:

char = "\u{5883}"
puts char  # Output: 境

Rust:

let c = '\u{5883}';
println!("{}", c);  // Output: 境

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005883";  /* Display: 境 */
}

HTML Decimal:

<p>HTML decimal: &#22659;</p>  <!-- Display: 境 -->

HTML Hexadecimal:

<p>HTML hex: &#x5883;</p>  <!-- Display: 境 -->

URL Encoding:

// 境 URL encoding
https://unicodefinder.com/search.php?query=%E5%A2%83

Encodings

MD5:

e8da851469c77e6c323723b02bebb7cb

SHA1:

8b008e3b6e867aa0eebaa20394dbde075de9d7ec

Base64:

5aKD