Unicode Finder

"羃" U+7F83(CJK UNIFIED IDEOGRAPH-7F83)

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

Programming

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

Web

CSS
\007F83
HtmlDecimal
羃
HtmlHexadecimal
羃
Url
%E7%BE%83

Code

MD5
af4e3ac8f5f6c3de71934835eb30e019
Sha1
6acc34637842f5c64236a604bb342b98f5285101
Base64
576D

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7F83';
console.log(char);  // Output: 羃

Java:

char c = '\u7F83';
System.out.println(c);  // Output: 羃

JSON:

{"text": "\u7F83"}  // Value: 羃

Python:

char = '\u7F83'
print(char)  # Output: 羃

Perl:

my $char = "\x{7F83}";
print $char;  # Output: 羃

PHP:

$char = "\x{7F83}";
echo $char;  // Output: 羃

Ruby:

char = "\u{7F83}"
puts char  # Output: 羃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#32643;</p>  <!-- Display: 羃 -->

HTML Hexadecimal:

<p>HTML hex: &#x7F83;</p>  <!-- Display: 羃 -->

URL Encoding:

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

Encodings

MD5:

af4e3ac8f5f6c3de71934835eb30e019

SHA1:

6acc34637842f5c64236a604bb342b98f5285101

Base64:

576D