Unicode Finder

"攘" U+6518(CJK UNIFIED IDEOGRAPH-6518)

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

Programming

C
\u6518
JavaScript
\u6518
Java
\u6518
Json
\u6518
Python
\u6518
Perl
\x{6518}
PHP
\x{6518}
Ruby
\u{6518}
Rust
\u{6518}
Go
\u6518

Web

CSS
\006518
HtmlDecimal
攘
HtmlHexadecimal
攘
Url
%E6%94%98

Code

MD5
297f215a37577ce69066a513c7f45ef7
Sha1
d98668179e8e23631e738da02a39331b96fb243c
Base64
5pSY

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u6518';
console.log(char);  // Output: 攘

Java:

char c = '\u6518';
System.out.println(c);  // Output: 攘

JSON:

{"text": "\u6518"}  // Value: 攘

Python:

char = '\u6518'
print(char)  # Output: 攘

Perl:

my $char = "\x{6518}";
print $char;  # Output: 攘

PHP:

$char = "\x{6518}";
echo $char;  // Output: 攘

Ruby:

char = "\u{6518}"
puts char  # Output: 攘

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\006518";  /* Display: 攘 */
}

HTML Decimal:

<p>HTML decimal: &#25880;</p>  <!-- Display: 攘 -->

HTML Hexadecimal:

<p>HTML hex: &#x6518;</p>  <!-- Display: 攘 -->

URL Encoding:

// 攘 URL encoding
https://unicodefinder.com/search.php?query=%E6%94%98

Encodings

MD5:

297f215a37577ce69066a513c7f45ef7

SHA1:

d98668179e8e23631e738da02a39331b96fb243c

Base64:

5pSY