Unicode Finder

"籙" U+7C59(CJK UNIFIED IDEOGRAPH-7C59)

U+7C59
ブロック名
CJK Unified Ideographs
名前
CJK UNIFIED IDEOGRAPH-7C59

Programming

C
\u7C59
JavaScript
\u7C59
Java
\u7C59
Json
\u7C59
Python
\u7C59
Perl
\x{7C59}
PHP
\x{7C59}
Ruby
\u{7C59}
Rust
\u{7C59}
Go
\u7C59

Web

CSS
\007C59
HtmlDecimal
籙
HtmlHexadecimal
籙
Url
%E7%B1%99

Code

MD5
1ffb9bf4ece0588477285b613f98ec2d
Sha1
2b9f1d8e87bd5b39a33f0608e22b333975cb18f0
Base64
57GZ

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u7C59';
console.log(char);  // Output: 籙

Java:

char c = '\u7C59';
System.out.println(c);  // Output: 籙

JSON:

{"text": "\u7C59"}  // Value: 籙

Python:

char = '\u7C59'
print(char)  # Output: 籙

Perl:

my $char = "\x{7C59}";
print $char;  # Output: 籙

PHP:

$char = "\x{7C59}";
echo $char;  // Output: 籙

Ruby:

char = "\u{7C59}"
puts char  # Output: 籙

Rust:

let c = '\u{7C59}';
println!("{}", c);  // Output: 籙

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007C59";  /* Display: 籙 */
}

HTML Decimal:

<p>HTML decimal: &#31833;</p>  <!-- Display: 籙 -->

HTML Hexadecimal:

<p>HTML hex: &#x7C59;</p>  <!-- Display: 籙 -->

URL Encoding:

// 籙 URL encoding
https://unicodefinder.com/search.php?query=%E7%B1%99

Encodings

MD5:

1ffb9bf4ece0588477285b613f98ec2d

SHA1:

2b9f1d8e87bd5b39a33f0608e22b333975cb18f0

Base64:

57GZ