Unicode Finder

"圕" U+5715(CJK UNIFIED IDEOGRAPH-5715)

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

Programming

C
\u5715
JavaScript
\u5715
Java
\u5715
Json
\u5715
Python
\u5715
Perl
\x{5715}
PHP
\x{5715}
Ruby
\u{5715}
Rust
\u{5715}
Go
\u5715

Web

CSS
\005715
HtmlDecimal
圕
HtmlHexadecimal
圕
Url
%E5%9C%95

Code

MD5
ea51f0bcf4e45cd3eac26cf1e7c109ba
Sha1
856360d01fca53f26aa9c52f6ca0d0bc14cda92d
Base64
5ZyV

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5715';
console.log(char);  // Output: 圕

Java:

char c = '\u5715';
System.out.println(c);  // Output: 圕

JSON:

{"text": "\u5715"}  // Value: 圕

Python:

char = '\u5715'
print(char)  # Output: 圕

Perl:

my $char = "\x{5715}";
print $char;  # Output: 圕

PHP:

$char = "\x{5715}";
echo $char;  // Output: 圕

Ruby:

char = "\u{5715}"
puts char  # Output: 圕

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005715";  /* Display: 圕 */
}

HTML Decimal:

<p>HTML decimal: &#22293;</p>  <!-- Display: 圕 -->

HTML Hexadecimal:

<p>HTML hex: &#x5715;</p>  <!-- Display: 圕 -->

URL Encoding:

// 圕 URL encoding
https://unicodefinder.com/search.php?query=%E5%9C%95

Encodings

MD5:

ea51f0bcf4e45cd3eac26cf1e7c109ba

SHA1:

856360d01fca53f26aa9c52f6ca0d0bc14cda92d

Base64:

5ZyV