Unicode Finder

"版" U+7248(CJK UNIFIED IDEOGRAPH-7248)

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

Programming

C
\u7248
JavaScript
\u7248
Java
\u7248
Json
\u7248
Python
\u7248
Perl
\x{7248}
PHP
\x{7248}
Ruby
\u{7248}
Rust
\u{7248}
Go
\u7248

Web

CSS
\007248
HtmlDecimal
版
HtmlHexadecimal
版
Url
%E7%89%88

Code

MD5
47595ba3562ede817b40287d907c3d40
Sha1
3da4ed2a6f90bd6e670c32a2900ad3dcb116ced2
Base64
54mI

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7248';
console.log(char);  // Output: 版

Java:

char c = '\u7248';
System.out.println(c);  // Output: 版

JSON:

{"text": "\u7248"}  // Value: 版

Python:

char = '\u7248'
print(char)  # Output: 版

Perl:

my $char = "\x{7248}";
print $char;  # Output: 版

PHP:

$char = "\x{7248}";
echo $char;  // Output: 版

Ruby:

char = "\u{7248}"
puts char  # Output: 版

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007248";  /* Display: 版 */
}

HTML Decimal:

<p>HTML decimal: &#29256;</p>  <!-- Display: 版 -->

HTML Hexadecimal:

<p>HTML hex: &#x7248;</p>  <!-- Display: 版 -->

URL Encoding:

// 版 URL encoding
https://unicodefinder.com/search.php?query=%E7%89%88

Encodings

MD5:

47595ba3562ede817b40287d907c3d40

SHA1:

3da4ed2a6f90bd6e670c32a2900ad3dcb116ced2

Base64:

54mI