Unicode Finder

"推" U+63A8(CJK UNIFIED IDEOGRAPH-63A8)

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

Programming

C
\u63A8
JavaScript
\u63A8
Java
\u63A8
Json
\u63A8
Python
\u63A8
Perl
\x{63A8}
PHP
\x{63A8}
Ruby
\u{63A8}
Rust
\u{63A8}
Go
\u63A8

Web

CSS
\0063A8
HtmlDecimal
推
HtmlHexadecimal
推
Url
%E6%8E%A8

Code

MD5
615eb6d622896531ad1d599ffc4d4ac1
Sha1
5b22f1c7dba2a31ed2c2cc2b50431f5ac9437796
Base64
5o6o

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u63A8';
console.log(char);  // Output: 推

Java:

char c = '\u63A8';
System.out.println(c);  // Output: 推

JSON:

{"text": "\u63A8"}  // Value: 推

Python:

char = '\u63A8'
print(char)  # Output: 推

Perl:

my $char = "\x{63A8}";
print $char;  # Output: 推

PHP:

$char = "\x{63A8}";
echo $char;  // Output: 推

Ruby:

char = "\u{63A8}"
puts char  # Output: 推

Rust:

let c = '\u{63A8}';
println!("{}", c);  // Output: 推

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0063A8";  /* Display: 推 */
}

HTML Decimal:

<p>HTML decimal: &#25512;</p>  <!-- Display: 推 -->

HTML Hexadecimal:

<p>HTML hex: &#x63A8;</p>  <!-- Display: 推 -->

URL Encoding:

// 推 URL encoding
https://unicodefinder.com/search.php?query=%E6%8E%A8

Encodings

MD5:

615eb6d622896531ad1d599ffc4d4ac1

SHA1:

5b22f1c7dba2a31ed2c2cc2b50431f5ac9437796

Base64:

5o6o