Unicode Finder

"彸" U+5F78(CJK UNIFIED IDEOGRAPH-5F78)

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

Programming

C
\u5F78
JavaScript
\u5F78
Java
\u5F78
Json
\u5F78
Python
\u5F78
Perl
\x{5F78}
PHP
\x{5F78}
Ruby
\u{5F78}
Rust
\u{5F78}
Go
\u5F78

Web

CSS
\005F78
HtmlDecimal
彸
HtmlHexadecimal
彸
Url
%E5%BD%B8

Code

MD5
e9a0b4d6e6ac0a9fe5cdf5a718ebf66b
Sha1
dbf8ce135c8073716c27a27caa7166a238f7cc0a
Base64
5b24

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u5F78';
console.log(char);  // Output: 彸

Java:

char c = '\u5F78';
System.out.println(c);  // Output: 彸

JSON:

{"text": "\u5F78"}  // Value: 彸

Python:

char = '\u5F78'
print(char)  # Output: 彸

Perl:

my $char = "\x{5F78}";
print $char;  # Output: 彸

PHP:

$char = "\x{5F78}";
echo $char;  // Output: 彸

Ruby:

char = "\u{5F78}"
puts char  # Output: 彸

Rust:

let c = '\u{5F78}';
println!("{}", c);  // Output: 彸

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005F78";  /* Display: 彸 */
}

HTML Decimal:

<p>HTML decimal: &#24440;</p>  <!-- Display: 彸 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F78;</p>  <!-- Display: 彸 -->

URL Encoding:

// 彸 URL encoding
https://unicodefinder.com/search.php?query=%E5%BD%B8

Encodings

MD5:

e9a0b4d6e6ac0a9fe5cdf5a718ebf66b

SHA1:

dbf8ce135c8073716c27a27caa7166a238f7cc0a

Base64:

5b24