Unicode Finder

"榻" U+69BB(CJK UNIFIED IDEOGRAPH-69BB)

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

Programming

C
\u69BB
JavaScript
\u69BB
Java
\u69BB
Json
\u69BB
Python
\u69BB
Perl
\x{69BB}
PHP
\x{69BB}
Ruby
\u{69BB}
Rust
\u{69BB}
Go
\u69BB

Web

CSS
\0069BB
HtmlDecimal
榻
HtmlHexadecimal
榻
Url
%E6%A6%BB

Code

MD5
a5a7ffa75605aa1808debe2520297b45
Sha1
6d42178b9285387d98f8e085c4ec99ae2aed242b
Base64
5qa7

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u69BB';
console.log(char);  // Output: 榻

Java:

char c = '\u69BB';
System.out.println(c);  // Output: 榻

JSON:

{"text": "\u69BB"}  // Value: 榻

Python:

char = '\u69BB'
print(char)  # Output: 榻

Perl:

my $char = "\x{69BB}";
print $char;  # Output: 榻

PHP:

$char = "\x{69BB}";
echo $char;  // Output: 榻

Ruby:

char = "\u{69BB}"
puts char  # Output: 榻

Rust:

let c = '\u{69BB}';
println!("{}", c);  // Output: 榻

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0069BB";  /* Display: 榻 */
}

HTML Decimal:

<p>HTML decimal: &#27067;</p>  <!-- Display: 榻 -->

HTML Hexadecimal:

<p>HTML hex: &#x69BB;</p>  <!-- Display: 榻 -->

URL Encoding:

// 榻 URL encoding
https://unicodefinder.com/search.php?query=%E6%A6%BB

Encodings

MD5:

a5a7ffa75605aa1808debe2520297b45

SHA1:

6d42178b9285387d98f8e085c4ec99ae2aed242b

Base64:

5qa7