Unicode Finder

"伩" U+4F29(CJK UNIFIED IDEOGRAPH-4F29)

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

Programming

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

Web

CSS
\004F29
HtmlDecimal
伩
HtmlHexadecimal
伩
Url
%E4%BC%A9

Code

MD5
88fbac2d45fc4066849b8e40cae2ef1d
Sha1
fdfbddaafcad85cc16d79c086c45c6e5766757f3
Base64
5Lyp

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u4F29';
console.log(char);  // Output: 伩

Java:

char c = '\u4F29';
System.out.println(c);  // Output: 伩

JSON:

{"text": "\u4F29"}  // Value: 伩

Python:

char = '\u4F29'
print(char)  # Output: 伩

Perl:

my $char = "\x{4F29}";
print $char;  # Output: 伩

PHP:

$char = "\x{4F29}";
echo $char;  // Output: 伩

Ruby:

char = "\u{4F29}"
puts char  # Output: 伩

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#20265;</p>  <!-- Display: 伩 -->

HTML Hexadecimal:

<p>HTML hex: &#x4F29;</p>  <!-- Display: 伩 -->

URL Encoding:

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

Encodings

MD5:

88fbac2d45fc4066849b8e40cae2ef1d

SHA1:

fdfbddaafcad85cc16d79c086c45c6e5766757f3

Base64:

5Lyp