Unicode Finder

"圔" U+5714(CJK UNIFIED IDEOGRAPH-5714)

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

Programming

C
\u5714
JavaScript
\u5714
Java
\u5714
Json
\u5714
Python
\u5714
Perl
\x{5714}
PHP
\x{5714}
Ruby
\u{5714}
Rust
\u{5714}
Go
\u5714

Web

CSS
\005714
HtmlDecimal
圔
HtmlHexadecimal
圔
Url
%E5%9C%94

Code

MD5
2a034e3049b6a1196280f28df380dcf2
Sha1
1e5fdd7d281730188b3fb60d676633e975f55bc3
Base64
5ZyU

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5714';
console.log(char);  // Output: 圔

Java:

char c = '\u5714';
System.out.println(c);  // Output: 圔

JSON:

{"text": "\u5714"}  // Value: 圔

Python:

char = '\u5714'
print(char)  # Output: 圔

Perl:

my $char = "\x{5714}";
print $char;  # Output: 圔

PHP:

$char = "\x{5714}";
echo $char;  // Output: 圔

Ruby:

char = "\u{5714}"
puts char  # Output: 圔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005714";  /* Display: 圔 */
}

HTML Decimal:

<p>HTML decimal: &#22292;</p>  <!-- Display: 圔 -->

HTML Hexadecimal:

<p>HTML hex: &#x5714;</p>  <!-- Display: 圔 -->

URL Encoding:

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

Encodings

MD5:

2a034e3049b6a1196280f28df380dcf2

SHA1:

1e5fdd7d281730188b3fb60d676633e975f55bc3

Base64:

5ZyU