Unicode Finder

"效" U+6548(CJK UNIFIED IDEOGRAPH-6548)

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

Programming

C
\u6548
JavaScript
\u6548
Java
\u6548
Json
\u6548
Python
\u6548
Perl
\x{6548}
PHP
\x{6548}
Ruby
\u{6548}
Rust
\u{6548}
Go
\u6548

Web

CSS
\006548
HtmlDecimal
效
HtmlHexadecimal
效
Url
%E6%95%88

Code

MD5
349966227615fb270fccb75594e568c9
Sha1
c7314b4162125f2402e002b179df64068285e837
Base64
5pWI

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6548';
console.log(char);  // Output: 效

Java:

char c = '\u6548';
System.out.println(c);  // Output: 效

JSON:

{"text": "\u6548"}  // Value: 效

Python:

char = '\u6548'
print(char)  # Output: 效

Perl:

my $char = "\x{6548}";
print $char;  # Output: 效

PHP:

$char = "\x{6548}";
echo $char;  // Output: 效

Ruby:

char = "\u{6548}"
puts char  # Output: 效

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006548";  /* Display: 效 */
}

HTML Decimal:

<p>HTML decimal: &#25928;</p>  <!-- Display: 效 -->

HTML Hexadecimal:

<p>HTML hex: &#x6548;</p>  <!-- Display: 效 -->

URL Encoding:

// 效 URL encoding
https://unicodefinder.com/search.php?query=%E6%95%88

Encodings

MD5:

349966227615fb270fccb75594e568c9

SHA1:

c7314b4162125f2402e002b179df64068285e837

Base64:

5pWI