Unicode Finder

"祐" U+7950(CJK UNIFIED IDEOGRAPH-7950)

U+7950
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7950

Programming

C
\u7950
JavaScript
\u7950
Java
\u7950
Json
\u7950
Python
\u7950
Perl
\x{7950}
PHP
\x{7950}
Ruby
\u{7950}
Rust
\u{7950}
Go
\u7950

Web

CSS
\007950
HtmlDecimal
祐
HtmlHexadecimal
祐
Url
%E7%A5%90

Code

MD5
8129a99aed12ecb24b09d4af7b395481
Sha1
69b5e88c375386b46019b3ea8a55a2f09d625482
Base64
56WQ

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7950';
console.log(char);  // Output: 祐

Java:

char c = '\u7950';
System.out.println(c);  // Output: 祐

JSON:

{"text": "\u7950"}  // Value: 祐

Python:

char = '\u7950'
print(char)  # Output: 祐

Perl:

my $char = "\x{7950}";
print $char;  # Output: 祐

PHP:

$char = "\x{7950}";
echo $char;  // Output: 祐

Ruby:

char = "\u{7950}"
puts char  # Output: 祐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007950";  /* Display: 祐 */
}

HTML Decimal:

<p>HTML decimal: &#31056;</p>  <!-- Display: 祐 -->

HTML Hexadecimal:

<p>HTML hex: &#x7950;</p>  <!-- Display: 祐 -->

URL Encoding:

// 祐 URL encoding
https://unicodefinder.com/search.php?query=%E7%A5%90

Encodings

MD5:

8129a99aed12ecb24b09d4af7b395481

SHA1:

69b5e88c375386b46019b3ea8a55a2f09d625482

Base64:

56WQ