Unicode Finder

"粸" U+7CB8(CJK UNIFIED IDEOGRAPH-7CB8)

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

Programming

C
\u7CB8
JavaScript
\u7CB8
Java
\u7CB8
Json
\u7CB8
Python
\u7CB8
Perl
\x{7CB8}
PHP
\x{7CB8}
Ruby
\u{7CB8}
Rust
\u{7CB8}
Go
\u7CB8

Web

CSS
\007CB8
HtmlDecimal
粸
HtmlHexadecimal
粸
Url
%E7%B2%B8

Code

MD5
0d7ec220ef09a16d501e5fd7abb41fba
Sha1
9dfd42e1e740ed318bf64d8e34f323268002b25d
Base64
57K4

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7CB8';
console.log(char);  // Output: 粸

Java:

char c = '\u7CB8';
System.out.println(c);  // Output: 粸

JSON:

{"text": "\u7CB8"}  // Value: 粸

Python:

char = '\u7CB8'
print(char)  # Output: 粸

Perl:

my $char = "\x{7CB8}";
print $char;  # Output: 粸

PHP:

$char = "\x{7CB8}";
echo $char;  // Output: 粸

Ruby:

char = "\u{7CB8}"
puts char  # Output: 粸

Rust:

let c = '\u{7CB8}';
println!("{}", c);  // Output: 粸

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007CB8";  /* Display: 粸 */
}

HTML Decimal:

<p>HTML decimal: &#31928;</p>  <!-- Display: 粸 -->

HTML Hexadecimal:

<p>HTML hex: &#x7CB8;</p>  <!-- Display: 粸 -->

URL Encoding:

// 粸 URL encoding
https://unicodefinder.com/search.php?query=%E7%B2%B8

Encodings

MD5:

0d7ec220ef09a16d501e5fd7abb41fba

SHA1:

9dfd42e1e740ed318bf64d8e34f323268002b25d

Base64:

57K4