Unicode Finder

"佘" U+4F58(CJK UNIFIED IDEOGRAPH-4F58)

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

Programming

C
\u4F58
JavaScript
\u4F58
Java
\u4F58
Json
\u4F58
Python
\u4F58
Perl
\x{4F58}
PHP
\x{4F58}
Ruby
\u{4F58}
Rust
\u{4F58}
Go
\u4F58

Web

CSS
\004F58
HtmlDecimal
佘
HtmlHexadecimal
佘
Url
%E4%BD%98

Code

MD5
39380584e522be93ae9542b8c381ee88
Sha1
96f19ee5946422460a9f091f6766b915031c29bf
Base64
5L2Y

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u4F58';
console.log(char);  // Output: 佘

Java:

char c = '\u4F58';
System.out.println(c);  // Output: 佘

JSON:

{"text": "\u4F58"}  // Value: 佘

Python:

char = '\u4F58'
print(char)  # Output: 佘

Perl:

my $char = "\x{4F58}";
print $char;  # Output: 佘

PHP:

$char = "\x{4F58}";
echo $char;  // Output: 佘

Ruby:

char = "\u{4F58}"
puts char  # Output: 佘

Rust:

let c = '\u{4F58}';
println!("{}", c);  // Output: 佘

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\004F58";  /* Display: 佘 */
}

HTML Decimal:

<p>HTML decimal: &#20312;</p>  <!-- Display: 佘 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F58;</p>  <!-- Display: 佘 -->

URL Encoding:

// 佘 URL encoding
https://unicodefinder.com/search.php?query=%E4%BD%98

Encodings

MD5:

39380584e522be93ae9542b8c381ee88

SHA1:

96f19ee5946422460a9f091f6766b915031c29bf

Base64:

5L2Y