Unicode Finder

"伱" U+4F31(CJK UNIFIED IDEOGRAPH-4F31)

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

Programming

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

Web

CSS
\004F31
HtmlDecimal
伱
HtmlHexadecimal
伱
Url
%E4%BC%B1

Code

MD5
31bfae5a4095fbc9cd990b17a5c8cf88
Sha1
096e0358ff1eb57376ea946a99b77b14318a9be6
Base64
5Lyx

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u4F31';
console.log(char);  // Output: 伱

Java:

char c = '\u4F31';
System.out.println(c);  // Output: 伱

JSON:

{"text": "\u4F31"}  // Value: 伱

Python:

char = '\u4F31'
print(char)  # Output: 伱

Perl:

my $char = "\x{4F31}";
print $char;  # Output: 伱

PHP:

$char = "\x{4F31}";
echo $char;  // Output: 伱

Ruby:

char = "\u{4F31}"
puts char  # Output: 伱

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20273;</p>  <!-- Display: 伱 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F31;</p>  <!-- Display: 伱 -->

URL Encoding:

// 伱 URL encoding
https://unicodefinder.com/search.php?query=%E4%BC%B1

Encodings

MD5:

31bfae5a4095fbc9cd990b17a5c8cf88

SHA1:

096e0358ff1eb57376ea946a99b77b14318a9be6

Base64:

5Lyx