Unicode Finder

"粃" U+7C83(CJK UNIFIED IDEOGRAPH-7C83)

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

Programming

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

Web

CSS
\007C83
HtmlDecimal
粃
HtmlHexadecimal
粃
Url
%E7%B2%83

Code

MD5
d68156bf1184b365a19907a9d057c02e
Sha1
0a06f991df2b2afce239af30d31ebc84e84ded41
Base64
57KD

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7C83';
console.log(char);  // Output: 粃

Java:

char c = '\u7C83';
System.out.println(c);  // Output: 粃

JSON:

{"text": "\u7C83"}  // Value: 粃

Python:

char = '\u7C83'
print(char)  # Output: 粃

Perl:

my $char = "\x{7C83}";
print $char;  # Output: 粃

PHP:

$char = "\x{7C83}";
echo $char;  // Output: 粃

Ruby:

char = "\u{7C83}"
puts char  # Output: 粃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#31875;</p>  <!-- Display: 粃 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C83;</p>  <!-- Display: 粃 -->

URL Encoding:

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

Encodings

MD5:

d68156bf1184b365a19907a9d057c02e

SHA1:

0a06f991df2b2afce239af30d31ebc84e84ded41

Base64:

57KD